InnoSetupApp constructor

const InnoSetupApp({
  1. required String name,
  2. required Version version,
  3. required String publisher,
  4. required InnoSetupAppUrls urls,
})

Define Inno Setup for the Flutter project.

Specify the name, version, publisher details of the app followed up by the urls and executable location.

Refer Version, InnoSetupAppUrls for more info.

Implementation

const InnoSetupApp({
  required this.name,
  required this.version,
  required this.publisher,
  required this.urls,
});