ScaffoldScreen constructor

const ScaffoldScreen({
  1. required Widget body,
  2. PreferredSizeWidget? appBar,
  3. StatelessWidget? footer,
  4. StatelessWidget? endDrawer,
  5. BaseScreen? previousPage,
  6. bool activeDrawer = true,
  7. Key? key,
})

Implementation

const ScaffoldScreen({
  required this.body,
  this.appBar,
  this.footer,
  this.endDrawer,
  BaseScreen? previousPage,
  this.activeDrawer = true,
  Key? key,
}) : super(previousPage: previousPage, key: key);