MenuItem constructor

MenuItem(
  1. String title, {
  2. IconData? icon,
  3. Widget? leading,
  4. void onTap()?,
  5. bool isCloseDrawerWhenTapped = true,
})

Implementation

MenuItem(
  this.title, {
  this.icon,
  this.leading,
  this.onTap,
  this.isCloseDrawerWhenTapped = true,
});