AdminScaffold constructor

const AdminScaffold({
  1. Key? key,
  2. AppBar? appBar,
  3. SideBar? sideBar,
  4. Widget? leadingIcon,
  5. required Widget body,
  6. Color? backgroundColor,
  7. double mobileThreshold = 768.0,
})

Implementation

const AdminScaffold({
  Key? key,
  this.appBar,
  this.sideBar,
  this.leadingIcon,
  required this.body,
  this.backgroundColor,
  this.mobileThreshold = 768.0,
}) : super(key: key);