96145aae7a
(cherry picked from commit 514fec1f2f4f1ff8a584bf8db7bf3a5537a3e9f8)
10 lines
221 B
Dart
10 lines
221 B
Dart
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
abstract class BuildUtils {
|
|
static const bool isDebugMode = kDebugMode;
|
|
|
|
static const bool isReleaseMode = kReleaseMode;
|
|
|
|
static const bool isProfileMode = kProfileMode;
|
|
} |