UpgradeAlert constructor

const UpgradeAlert({
  1. Key? key,
  2. Widget? child,
  3. UpgradeDialogStyle? dialogStyle,
  4. bool showLater = true,
  5. bool showIgnore = true,
  6. String? title,
  7. String? updateButtonText,
  8. String? laterButtonText,
  9. String? ignoreButtonText,
  10. VoidCallback? onUpdate,
})

Creates a new UpgradeAlert wrapper.

Implementation

const UpgradeAlert({
  super.key,
  this.child,
  this.dialogStyle,
  this.showLater = true,
  this.showIgnore = true,
  this.title,
  this.updateButtonText,
  this.laterButtonText,
  this.ignoreButtonText,
  this.onUpdate,
});