11 lines
167 B
Dart
11 lines
167 B
Dart
class AppConfig {
|
|
AppConfig._();
|
|
|
|
static const String apiBaseUrl = String.fromEnvironment(
|
|
'API_BASE_URL',
|
|
defaultValue: 'http://localhost:8000',
|
|
);
|
|
}
|
|
|
|
|