CustomDialog constructor
const
CustomDialog({
- BuildContext? context,
- bool isErrorDialog = false,
- bool hideReferences = false,
- bool hideQrScan = false,
- dynamic message,
- String? title,
- bool isAtsignForm = false,
- bool showClose = false,
- String atsign = '',
- bool isQR = false,
- dynamic onSubmit()?,
- dynamic onValidate()?,
- dynamic onLimitExceed()?,
- Function? onClose,
- Key? key,
Implementation
const CustomDialog(
{this.context,
this.isErrorDialog = false,
this.hideReferences = false,
this.hideQrScan = false,
this.message,
this.title,
this.isAtsignForm = false,
this.showClose = false,
this.atsign = '',
this.isQR = false,
this.onSubmit,
this.onValidate,
this.onLimitExceed,
this.onClose,
Key? key})
: super(key: key);