MessageDialog constructor

MessageDialog(
  1. String? message, {
  2. BuildContext? context,
  3. Key? key,
  4. String? buttonText,
  5. double fontSize = 14,
  6. bool cancelable = true,
  7. TextAlign textAlign = TextAlign.start,
})

Implementation

MessageDialog(
  this.message, {
  super.context,
  super.key,
  this.buttonText,
  this.fontSize = 14,
  this.cancelable = true,
  this.textAlign = TextAlign.start,
});