/// 集中管理应用配置,通过 --dart-define=BASE_URL=... 注入环境变量 /// /// 开发默认值:http://localhost:8080 /// 生产部署示例:flutter run --dart-define=BASE_URL=http://192.168.1.100:8080 class AppConfig { const AppConfig._(); static const _baseUrl = String.fromEnvironment( 'BASE_URL', defaultValue: 'http://localhost:8080', ); static String get baseUrl => _baseUrl; static String get apiBaseUrl => '$_baseUrl/api/v1'; static String get healthUrl => '$_baseUrl/health'; static String get versionUrl => '$_baseUrl/version'; }