7 lines
157 B
Dart
7 lines
157 B
Dart
class Env {
|
|
static String get apiUrl {
|
|
const url = String.fromEnvironment('API_URL');
|
|
return url.isNotEmpty ? url : 'http://localhost:8000';
|
|
}
|
|
}
|