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