HostApplicationBuilderSettings constructor

HostApplicationBuilderSettings({
  1. String? applicationName,
  2. List<String>? args,
  3. ConfigurationManager? configuration,
  4. String? configurationRootPath,
  5. bool disableDefaults = false,
  6. String? environmentName,
})

Initializes an instance of the HostApplicationBuilderSettings class.

Implementation

HostApplicationBuilderSettings({
  this.applicationName,
  this.args,
  this.configuration,
  this.configurationRootPath,
  this.disableDefaults = false,
  this.environmentName,
});