WebResponsiveScaffold constructor

WebResponsiveScaffold({
  1. Key? key,
  2. Widget? mediumLayoutWidget,
  3. Widget? smallLayoutWidget,
  4. Widget? xLargeLayoutWidget,
  5. AppBar? smallLayoutAppBar,
  6. AppBar? mediumLayoutAppBar,
  7. AppBar? xLargeLayoutAppBar,
  8. Drawer? smallLayoutDrawer,
  9. FloatingActionButton? smallLayoutFAB,
  10. Drawer? mediumLayoutDrawer,
  11. FloatingActionButton? mediumLayoutFAB,
  12. Drawer? xLargeLayoutDrawer,
  13. FloatingActionButton? xLargeLayoutFAB,
})

ignore: prefer_const_constructors_in_immutables

Implementation

WebResponsiveScaffold({
  super.key,
  this.mediumLayoutWidget,
  this.smallLayoutWidget,
  this.xLargeLayoutWidget,
  this.smallLayoutAppBar,
  this.mediumLayoutAppBar,
  this.xLargeLayoutAppBar,
  this.smallLayoutDrawer,
  this.smallLayoutFAB,
  this.mediumLayoutDrawer,
  this.mediumLayoutFAB,
  this.xLargeLayoutDrawer,
  this.xLargeLayoutFAB,
});