InnoSetupApp constructor
const
InnoSetupApp({
- required String name,
- required Version version,
- required String publisher,
- 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,
});