FastAlertDialog constructor
const
FastAlertDialog({})
Implementation
const FastAlertDialog({
Key? key,
required this.titleText,
super.backgroundColor,
this.messageColor,
this.messageText,
this.cancelText,
this.titleColor,
this.validText,
this.onCancel,
this.children,
super.actions,
this.onValid,
}) : assert(messageText == null || children == null),
assert(messageText != null || children != null),
assert(actions == null || cancelText == null),
super(key: key);