ResponsiveScaffold constructor

const ResponsiveScaffold({
  1. Key? key,
  2. Widget? appBar,
  3. required Widget body,
  4. Widget? footer,
  5. bool isSupportTabBar = false,
  6. Widget? navigation,
})

Implementation

const ResponsiveScaffold({
  Key? key,
  this.appBar,
  required this.body,
  this.footer,
  this.isSupportTabBar = false,
  this.navigation,
}) : super(key: key);