WuiModal constructor

const WuiModal({
  1. Key? key,
  2. Widget? header,
  3. Widget? insetContent,
  4. Widget? content,
  5. Widget? footer,
  6. EdgeInsets? footerPadding,
})

Implementation

const WuiModal({
  Key? key,
  this.header,
  this.insetContent,
  this.content,
  this.footer,
  this.footerPadding
}) : super(key: key);