CustomDialog constructor

const CustomDialog({
  1. BuildContext? context,
  2. bool isErrorDialog = false,
  3. bool hideReferences = false,
  4. bool hideQrScan = false,
  5. dynamic message,
  6. String? title,
  7. bool isAtsignForm = false,
  8. bool showClose = false,
  9. String atsign = '',
  10. bool isQR = false,
  11. dynamic onSubmit(
    1. String
    )?,
  12. dynamic onValidate(
    1. String,
    2. String,
    3. bool
    )?,
  13. dynamic onLimitExceed(
    1. List<String>,
    2. String
    )?,
  14. Function? onClose,
  15. 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);