TF-1487 Apply linter rule

This commit is contained in:
dab246
2023-02-24 12:12:54 +07:00
committed by Dat Vu
parent 117a8a8fc6
commit 2b71aba278
155 changed files with 798 additions and 1039 deletions
+6 -5
View File
@@ -1,11 +1,12 @@
import 'package:flutter/foundation.dart' as Foundation;
import 'package:flutter/foundation.dart';
abstract class BuildUtils {
static const bool isDebugMode = Foundation.kDebugMode;
static const bool isDebugMode = kDebugMode;
static const bool isReleaseMode = Foundation.kReleaseMode;
static const bool isReleaseMode = kReleaseMode;
static const bool isWeb = Foundation.kIsWeb;
static const bool isWeb = kIsWeb;
static const bool isProfileMode = Foundation.kProfileMode;
static const bool isProfileMode = kProfileMode;
}