PuePage constructor

PuePage({
  1. PreferredSizeWidget? appBar,
  2. PueFooter? footer,
  3. AppBarData? appBarData,
  4. Widget? header,
  5. required Widget body,
  6. FooterData? footerData,
  7. Widget? background,
})

Implementation

PuePage({
  this.appBar,
  this.footer,
  this.appBarData,
  this.header,
  required this.body,
  this.footerData,
  this.background,
});