RouteItem constructor

const RouteItem({
  1. String name = '',
  2. required Type page,
  3. List<RouteItem> pages = const [],
  4. @Deprecated('will be removed.') List<Type> list = const [],
  5. List<Type> groupList = const [],
})

Implementation

const RouteItem({
  this.name = '',
  required this.page,
  this.pages = const [],
  @Deprecated('will be removed.') this.list = const [],
  this.groupList = const [],
});