ResponsiveScaffold constructor

const ResponsiveScaffold({
  1. Key? key,
  2. required AppBar appBar,
  3. Widget? title,
  4. bool appBarExpanded = false,
  5. List<Widget>? actions,
  6. Widget? drawer,
  7. required Widget body,
  8. double elevation = 0,
  9. Color color = Colors.black,
})

Implementation

const ResponsiveScaffold(
    {Key? key,
    required this.appBar,
    this.title,
    this.appBarExpanded = false,
    this.actions,
    this.drawer,
    required this.body,
    this.elevation = 0,
    this.color = Colors.black})
    : super(key: key);