9 lines
190 B
Dart
9 lines
190 B
Dart
class Env {
|
|
static const String apiBaseUrl = String.fromEnvironment(
|
|
'API_BASE_URL',
|
|
defaultValue: 'http://localhost:3000',
|
|
);
|
|
|
|
// Add more environment variables as needed
|
|
}
|