8 lines
279 B
Dart
Raw Normal View History

2025-07-30 22:38:44 +07:00
class Variables {
static const String appName = 'POS Kasir Resto App';
static const String apiVersion = 'v1';
// static const String baseUrl = 'http://192.168.1.202:8000';
2025-09-01 22:12:56 +07:00
static const String baseUrl = 'https://api-pos.apskel.id';
2025-08-03 14:39:15 +07:00
static const int defaultLimit = 10;
2025-07-30 22:38:44 +07:00
}