ArcaneNavItem constructor
const
ArcaneNavItem({
- required String label,
- String? href,
- void onTap()?,
- List<
ArcaneNavItem> ? children, - bool isActive = false,
Implementation
const ArcaneNavItem({
required this.label,
this.href,
this.onTap,
this.children,
this.isActive = false,
});