DrawerMenu constructor

const DrawerMenu({
  1. String title = 'Menu',
  2. Widget trailing = const Icon(Icons.home),
  3. bool showDivider = false,
  4. VoidCallback? onTap,
})

Implementation

const DrawerMenu({
  this.title = 'Menu',
  this.trailing = const Icon(Icons.home),
  this.showDivider = false,
  this.onTap,
});