MobileDrawer constructor

const MobileDrawer({
  1. Key? key,
  2. Widget? header,
  3. required List<MenuGroup> menuGroups,
  4. List<String>? claims,
  5. Color? backgroundColor,
  6. Color? selectedColor,
  7. Color? unselectedColor,
})

Implementation

const MobileDrawer({
  super.key,
  this.header,
  required this.menuGroups,
  this.claims,
  this.backgroundColor,
  this.selectedColor,
  this.unselectedColor,
});