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; }