6 lines
232 B
Dart
6 lines
232 B
Dart
class AppConstants {
|
|
// Use 10.0.2.2 for Android emulator to access localhost
|
|
static const String defaultOdooUrl = 'http://192.168.1.2:10001';
|
|
static const String dbName = 'FOODIES-DELIGHT'; // Found in your local database
|
|
}
|