DefaultModal constructor

const DefaultModal({
  1. Key? key,
  2. String? illustration,
  3. String? title,
  4. String? message,
  5. String? buttonTitle,
  6. bool? showCloseButton = false,
  7. dynamic onCloseButton()?,
  8. dynamic onPressed()?,
})

Implementation

const DefaultModal({
  super.key,
  this.illustration,
  this.title,
  this.message,
  this.buttonTitle,
  this.showCloseButton = false,
  this.onCloseButton,
  this.onPressed,
});