Scaffold constructor

const Scaffold({
  1. Key? key,
  2. Widget? header,
  3. Widget? body,
  4. Widget? footer,
  5. Color? backgroundColor,
  6. bool expandBody = true,
  7. Widget? left,
})

Implementation

const Scaffold({
  Key? key,
  this.header,
  this.body,
  this.footer,
  this.backgroundColor,
  this.expandBody = true,
  this.left,
}) : super(key: key);