Files
social-app/apps/lib/core/config/env.dart
T

7 lines
157 B
Dart

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