InnoSetupAppUrls constructor

InnoSetupAppUrls({
  1. required Uri homeUrl,
  2. Uri? publisherUrl,
  3. Uri? supportUrl,
  4. Uri? updatesUrl,
})

Define homeUrl for the app with optional publisherUrl, supportUrl and updatesUrl.

Refer Uri, Uri.parse for more info.

Implementation

InnoSetupAppUrls({
  required this.homeUrl,
  this.publisherUrl,
  this.supportUrl,
  this.updatesUrl,
});