class Env { static const _productionBackendUrl = 'https://api.meeyao.com'; static String get backendUrl { final injected = const String.fromEnvironment('BACKEND_URL'); if (injected.isNotEmpty && injected != 'false') { return injected; } return _productionBackendUrl; } static Future init() async {} }