FxDialog constructor

const FxDialog({
  1. Key? key,
  2. String? title,
  3. dynamic onConfirm()?,
  4. dynamic onCancel()?,
  5. required String? message,
  6. String? cancelStr,
  7. String? confirmStr,
  8. Widget? customContent,
  9. String? imageName,
  10. TextAlign? messageAlign,
  11. bool dismissDialogWhenConfirmClick()?,
  12. double? messageHeightDelta,
})

Implementation

const FxDialog(
    {Key? key,
    this.title,
    this.onConfirm,
    this.onCancel,
    required this.message,
    this.cancelStr,
    this.confirmStr,
    this.customContent,
    this.imageName,
    this.messageAlign,
    this.dismissDialogWhenConfirmClick,
    this.messageHeightDelta})
    : super(key: key);