AlertMessage constructor

const AlertMessage({
  1. Key? key,
  2. String? text,
  3. GestureTapCallback? confirmTap,
  4. Widget? contentText,
  5. Widget? confirm,
  6. Widget? title,
  7. Widget? content,
  8. String? confirmText,
  9. String? titleText,
})

Implementation

const AlertMessage({
  super.key,
  this.text,
  this.confirmTap,
  this.contentText,
  this.confirm,
  this.title,
  this.content,
  this.confirmText,
  this.titleText,
});