UpdateVersionDialog constructor

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

Implementation

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