UpdateVersionDialog constructor

UpdateVersionDialog({
  1. String? title,
  2. String? content,
  3. bool mandatory = false,
  4. bool updated = false,
  5. String? updateButtonText,
  6. String? cancelButtonText,
  7. ButtonStyle? updateButtonStyle,
  8. TextStyle? updateTextStyle,
  9. AppVersionResult? appVersionResult,
  10. Color? backgroundColor,
  11. ButtonStyle? cancelButtonStyle,
  12. TextStyle? cancelTextStyle,
  13. TextStyle? contentTextStyle,
  14. TextStyle? titleTextStyle,
  15. Key? key,
})

Implementation

UpdateVersionDialog({
  this.title,
  this.content,
  this.mandatory = false,
  this.updated = false,
  this.updateButtonText,
  this.cancelButtonText,
  this.updateButtonStyle,
  this.updateTextStyle,
  this.appVersionResult,
  this.backgroundColor,
  this.cancelButtonStyle,
  this.cancelTextStyle,
  this.contentTextStyle,
  this.titleTextStyle,
  super.key,
});