7 lines
161 B
Dart
7 lines
161 B
Dart
class AppConfig {
|
|
static const apiBaseUrl = String.fromEnvironment(
|
|
'API_BASE_URL',
|
|
defaultValue: 'https://filedriveapi.thedomainnest.com/api',
|
|
);
|
|
}
|