SCAlertDialog class

Constructors

SCAlertDialog()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

show({required BuildContext context, String? title, String? message, Color titleTxtColor = Colors.black, Color messageTxtColor = Colors.black, Color closeBtnColor = Colors.black, required SCAlertType type, bool barrierDismissible = false, ValueChanged<String>? onOkBtnTap, String okBtnText = "OK", Color okBtnColor = const Color(0xFF50A1FF), Color okBtnTxtColor = Colors.white, ValueChanged<String>? onCancelBtnTap, String cancelBtnText = "CANCEL", Color cancelBtnColor = const Color(0xFFEAECF0), Color cancelBtnTxtColor = Colors.black, bool showCancelBtn = false, double borderRadius = 5.0, ValueChanged<String>? onEmailTextFieldChanged, ValueChanged<String>? onPasswordTextFieldChanged, Widget? customWidget, Map<String, bool>? checkBoxAry, ValueChanged<Map<String, bool>>? onCheckBoxSelection, Map<String, int>? radioButtonAry, ValueChanged<String>? onRadioButtonSelection}) Future