6 lines
220 B
Dart
6 lines
220 B
Dart
class AppConstants {
|
|
// Use 10.0.2.2 for Android emulator to access localhost
|
|
static const String defaultOdooUrl = 'https://food2.odoo.com';
|
|
static const String dbName = 'food2'; // Found in your local database
|
|
}
|