MenuElement constructor

MenuElement({
  1. String? title,
  2. String? subtitle,
  3. MenuImage? image,
})

Implementation

MenuElement({
  this.title,
  this.subtitle,
  this.image,
}) : uniqueId = _nextId++;