NavLinkProps constructor

const NavLinkProps({
  1. required String label,
  2. String? href,
  3. void onTap()?,
  4. bool isActive = false,
  5. bool showArrow = false,
})

Implementation

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