UpgraderStoreController constructor

UpgraderStoreController({
  1. UpgraderStore onAndroid()? = onAndroidStore,
  2. UpgraderStore onFuchsia()?,
  3. UpgraderStore oniOS()? = onIOSStore,
  4. UpgraderStore onLinux()?,
  5. UpgraderStore onMacOS()?,
  6. UpgraderStore onWeb()?,
  7. UpgraderStore onWindows()?,
})

Creates a controller that provides the store details for each platform.

Implementation

UpgraderStoreController({
  this.onAndroid = onAndroidStore,
  this.onFuchsia,
  this.oniOS = onIOSStore,
  this.onLinux,
  this.onMacOS,
  this.onWeb,
  this.onWindows,
});