NavItem constructor

NavItem({
  1. String? label,
  2. String? href,
  3. bool? exact,
  4. String? id,
  5. String? className,
  6. String? iconHtml,
  7. String? show,
  8. String? hide,
  9. List<NavItem>? children,
  10. Map<String, String?>? meta,
})

Implementation

NavItem(
    {this.label,
    this.href,
    this.exact,
    this.id,
    this.className,
    this.iconHtml,
    this.show,
    this.hide,
    this.children,
    this.meta});