Scaffold constructor

const Scaffold({
  1. Key? key,
  2. Component? appBar,
  3. Component? body,
  4. Component? footer,
  5. FloatingActionButton? floatingActionButton,
})

Implementation

const Scaffold({
  super.key,
  this.appBar,
  this.body,
  this.footer,
  this.floatingActionButton,
});