CustomDialog constructor

CustomDialog({
  1. bool isErrorDialog = false,
  2. dynamic message,
  3. String? title,
  4. bool isAtsignForm = false,
  5. bool showClose = false,
  6. String atsign = '',
  7. bool isQR = false,
  8. dynamic onSubmit(
    1. String
    )?,
  9. dynamic onValidate(
    1. String,
    2. String,
    3. bool
    )?,
  10. dynamic onLimitExceed(
    1. List<String>,
    2. String
    )?,
  11. Function? onClose,
  12. dynamic context,
})

Implementation

CustomDialog(
    {this.isErrorDialog = false,
    this.message,
    this.title,
    this.isAtsignForm = false,
    this.showClose = false,
    this.atsign = '',
    this.isQR = false,
    this.onSubmit,
    this.onValidate,
    this.onLimitExceed,
    this.onClose,
    this.context});