MessageDialog constructor

MessageDialog({
  1. Color? dialogBackgroundColor = Colors.white,
  2. Color? buttonOkColor,
  3. String title = 'Dialog Title',
  4. Color? titleColor,
  5. String message = 'Dialog Message',
  6. Color? messageColor,
  7. String buttonOkText = 'Ok',
  8. Function? buttonOkOnPressed,
  9. double dialogRadius = 15.0,
  10. double buttonRadius = 18.0,
  11. Icon? iconButtonOk,
})

Implementation

MessageDialog({
  this.dialogBackgroundColor = Colors.white,
  this.buttonOkColor,
  this.title = 'Dialog Title',
  this.titleColor,
  this.message = 'Dialog Message',
  this.messageColor,
  this.buttonOkText = 'Ok',
  this.buttonOkOnPressed,
  this.dialogRadius = 15.0,
  this.buttonRadius = 18.0,
  this.iconButtonOk,
});