import 'package:flutter/foundation.dart'; class GlobalVar{ static bool isMock = false; static String apiHost = "otapi.beswell.com"; static int apiPort = 10001; static Flavor flavor=Flavor.normal; // static String apiHost = "192.168.0.3"; // static int apiPort = 9091; /// 任意地点打点 static bool isGpsTest = true && !kReleaseMode; /// 高德API KEY static String keyAMap = 'e3b997ef83b492b79f873783ca262139'; } enum Flavor{ normal, dev, }