EnvironmentConfig constructor

EnvironmentConfig({
  1. required Environment environment,
  2. required String name,
  3. ApiConfig? api,
  4. CiCdConfig? ciCd,
  5. FeaturesConfig? features,
  6. LoggingConfig? logging,
  7. SecurityConfig? security,
  8. AnalyticsConfig? analytics,
  9. LocalizationConfig? localization,
  10. ThemingConfig? theming,
  11. ThirdPartyServicesConfig? thirdPartyServices,
  12. ScheduledTasksConfig? scheduledTasks,
})

Implementation

EnvironmentConfig({
  required this.environment,
  required this.name,
  this.api,
  this.ciCd,
  this.features,
  this.logging,
  this.security,
  this.analytics,
  this.localization,
  this.theming,
  this.thirdPartyServices,
  this.scheduledTasks,
});