EnvironmentConfig.development constructor
EnvironmentConfig.development({
- bool enableLogging = true,
Factory constructor for development configuration
Implementation
factory EnvironmentConfig.development({bool enableLogging = true}) {
return EnvironmentConfig(
environment: BabylAIEnvironment.development,
enableLogging: enableLogging,
);
}