abstract class Environment { static const env = String.fromEnvironment('env', defaultValue: 'development'); static const apiBaseUrl = String.fromEnvironment('apiBaseUrl'); static const apiOrigin = String.fromEnvironment('apiOrigin'); static const wsUrl = String.fromEnvironment('wsUrl'); static const juphoonAppKey = String.fromEnvironment('juphoonAppKey'); // --- Fase 2: Firebase & Sentry --- // static const sentryDsn = String.fromEnvironment('sentryDsn'); // static const firebaseProjectId = String.fromEnvironment('firebaseProjectId'); }