DrawerItem constructor

DrawerItem({
  1. required String title,
  2. required String routeName,
  3. IconData? icon,
  4. Widget? child,
  5. List<MenuItem>? menuItems = const [],
  6. bool isFirst = false,
})

Implementation

DrawerItem({
  required this.title,
  required this.routeName,
  this.icon,
  this.child,
  this.menuItems = const [],
  this.isFirst = false,
});