basic_config.dart 396 Bytes
import 'package:flutter/foundation.dart';

class BasicConfig {
   // static bool isTestDev = true;
   static bool isTestDev = false;


   // 暂时未启用
   static bool isEnvProd() {
      if (kReleaseMode) {
         debugPrint("dart.vm.product-现在是release环境.");
      } else {
         debugPrint("dart.vm.product-现在是debug环境.");
      }
      return kReleaseMode;
   }

}