LinkGroup constructor
LinkGroup({
- List<
LinkGroup> ? groups, - SimpleLink? header,
- String? id,
- List<
SimpleLink> ? links, - String? styleClass,
- int? weight,
Implementation
LinkGroup(
{List<LinkGroup>? groups,
this.header,
this.id,
List<SimpleLink>? links,
this.styleClass,
this.weight})
: groups = groups ?? [],
links = links ?? [];