Menu.sub constructor

Menu.sub(
  1. int id,
  2. String title,
  3. StatefulWidget route, [
  4. bool newPage = false,
])

Implementation

Menu.sub(int id, String title, StatefulWidget route, [bool newPage = false]) {
  this.id = id;
  this.title = title;
  this.icon = null;
  this.type = "CHILD";
  this.route = route;
  this.newPage = newPage;
}