9 lines
197 B
Dart
9 lines
197 B
Dart
class Env {
|
|
static const String apiBaseUrl = String.fromEnvironment(
|
|
'API_BASE_URL',
|
|
defaultValue: 'https://api.donovankelly.xyz',
|
|
);
|
|
|
|
// Add more environment variables as needed
|
|
}
|