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