ModalContainer constructor

const ModalContainer({
  1. Key? key,
  2. String? title,
  3. String? subtitle,
  4. List<Widget>? body,
  5. Widget? footer,
  6. Widget? icon,
})

Required Tittle, subtittle, and Icon

Implementation

const ModalContainer({
  super.key,
  this.title,
  this.subtitle,
  this.body,
  this.footer,
  this.icon,
});