DrawerWidget constructor

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

Implementation

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