MenuAction constructor

MenuAction({
  1. String title = '',
  2. MenuIconType icon = MenuIconType.home,
  3. Action? action,
})

Implementation

MenuAction({
  this.title = '',
  this.icon = MenuIconType.home,
  this.action,
});