NavItemProps constructor

const NavItemProps({
  1. required String label,
  2. String? href,
  3. void onTap()?,
  4. List<NavItemProps>? children,
  5. bool isActive = false,
})

Implementation

const NavItemProps({
  required this.label,
  this.href,
  this.onTap,
  this.children,
  this.isActive = false,
});