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