UpdateVersionDialog constructor

UpdateVersionDialog({
  1. String? title,
  2. String? content,
  3. String? updateButtonText,
  4. String? cancelButtonText,
  5. ButtonStyle? updateButtonStyle,
  6. TextStyle? updateTextStyle,
  7. AppVersionResult? appVersionResult,
  8. Color? backgroundColor,
  9. ButtonStyle? cancelButtonStyle,
  10. TextStyle? cancelTextStyle,
  11. TextStyle? contentTextStyle,
  12. TextStyle? titleTextStyle = const TextStyle(fontSize: 18.0, fontWeight: FontWeight.w700),
  13. Key? key,
})

Implementation

UpdateVersionDialog(
    {this.title,
    this.content,
    this.updateButtonText,
    this.cancelButtonText,
    this.updateButtonStyle,
    this.updateTextStyle,
    this.appVersionResult,
    this.backgroundColor,
    this.cancelButtonStyle,
    this.cancelTextStyle,
    this.contentTextStyle,
    this.titleTextStyle =
        const TextStyle(fontSize: 18.0, fontWeight: FontWeight.w700),
    Key? key})
    : super(key: key);