EnvironmentConfig.production constructor

EnvironmentConfig.production({
  1. bool enableLogging = false,
})

Factory constructor for production configuration

Implementation

factory EnvironmentConfig.production({bool enableLogging = false}) {
  return EnvironmentConfig(
    environment: BabylAIEnvironment.production,
    enableLogging: enableLogging,
  );
}