ForceUpdate constructor

const ForceUpdate({
  1. UpgradeConfig android = const UpgradeConfig(shouldForceUpdate: false),
  2. UpgradeConfig ios = const UpgradeConfig(shouldForceUpdate: false),
  3. UpgradeConfig mac = const UpgradeConfig(shouldForceUpdate: false),
  4. UpgradeConfig windows = const UpgradeConfig(shouldForceUpdate: false),
})

Implementation

const ForceUpdate({
  this.android = const UpgradeConfig(shouldForceUpdate: false),
  this.ios = const UpgradeConfig(shouldForceUpdate: false),
  this.mac = const UpgradeConfig(shouldForceUpdate: false),
  this.windows = const UpgradeConfig(shouldForceUpdate: false),
});