Menu.sub constructor
Menu.sub(
- int id,
- String title,
- StatefulWidget route, [
- 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;
}