InnoSetup constructor

const InnoSetup({
  1. required InnoSetupIcon icon,
  2. InnoSetupCompression compression = InnoSetupCompressions.none,
  3. List<InnoSetupLanguage>? languages,
  4. required InnoSetupName name,
  5. required InnoSetupInstallerDirectory location,
  6. InnoSetupLicense? license,
  7. required InnoSetupApp app,
  8. required InnoSetupFiles files,
  9. bool runAfterInstall = true,
})

The Inno Setup installer definition block.

Implementation

const InnoSetup({
  required this.icon,
  this.compression = InnoSetupCompressions.none,
  this.languages,
  required this.name,
  required this.location,
  this.license,
  required this.app,
  required this.files,
  this.runAfterInstall = true,
});