CliConfig constructor

const CliConfig({
  1. BuildType type = BuildType.release,
  2. bool app = true,
  3. bool installer = true,
  4. bool installInnoSetup = true,
  5. bool generateAppId = true,
  6. bool generatePublisher = true,
  7. String? appIdNamespace,
  8. String? buildArgs,
  9. String? appVersion,
  10. String? signToolName,
  11. String? signToolCommand,
  12. String? signToolParams,
})

Creates a CliConfig instance with default values.

Implementation

const CliConfig({
  this.type = BuildType.release,
  this.app = true,
  this.installer = true,
  this.installInnoSetup = true,
  this.generateAppId = true,
  this.generatePublisher = true,
  this.appIdNamespace,
  this.buildArgs,
  this.appVersion,
  this.signToolName,
  this.signToolCommand,
  this.signToolParams,
});