DrawerWidget constructor

const DrawerWidget({
  1. required List<DrawerItem> items,
  2. Widget? header,
  3. Widget? footer,
  4. Key? key,
})

Creates a DrawerWidget.

Implementation

const DrawerWidget({
  required this.items,
  this.header,
  this.footer,
  super.key,
});