Files
rog_app/lib/utils/const.dart

14 lines
337 B
Dart
Raw Normal View History

2022-06-14 14:37:59 +05:30
class ConstValues{
static const server_uri = "http://container.intranet.sumasen.net:8100";
static const dev_server = "http://localhost:8100";
2022-09-22 20:36:56 +05:30
static const dev_ip_server = "http://192.168.8.100:8100";
2022-09-27 17:52:54 +05:30
static const dev_home_ip_server = "http://172.20.10.9:8100";
2022-06-14 14:37:59 +05:30
static String currentServer(){
2022-10-12 21:46:17 +05:30
return dev_server;
2022-06-14 14:37:59 +05:30
}
2022-09-01 19:14:18 +05:30
}