Files
rog_app/lib/utils/const.dart

14 lines
338 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";
static const dev_home_ip_server = "http://192.168.1.10:8100";
2022-06-14 14:37:59 +05:30
static String currentServer(){
2022-09-22 20:36:56 +05:30
return server_uri;
2022-06-14 14:37:59 +05:30
}
2022-09-01 19:14:18 +05:30
}