12 lines
258 B
Dart
12 lines
258 B
Dart
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
abstract class BuildUtils {
|
|
static const bool isDebugMode = kDebugMode;
|
|
|
|
static const bool isReleaseMode = kReleaseMode;
|
|
|
|
static const bool isWeb = kIsWeb;
|
|
|
|
static const bool isProfileMode = kProfileMode;
|
|
} |