EnvironmentConfig.development constructor

EnvironmentConfig.development({
  1. bool enableLogging = true,
})

Factory constructor for development configuration

Implementation

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