WMainLayout constructor

const WMainLayout({
  1. Key? key,
  2. Widget? header,
  3. Widget? footer,
  4. Widget? top,
  5. Widget? body,
  6. Widget? bottom,
})

Implementation

const WMainLayout({
  super.key,
  this.header,
  this.footer,
  this.top,
  this.body,
  this.bottom,
});