MenuModel constructor

MenuModel({
  1. String? title,
  2. String? subTitle,
  3. IconData? icon,
  4. ActionsMenu? actionsMenu,
})

Implementation

MenuModel({
  this.title,
  this.subTitle,
  this.icon,
  this.actionsMenu,
});