MobileNavItem constructor

const MobileNavItem({
  1. required String label,
  2. String? href,
  3. void onTap()?,
  4. List<MobileNavItem>? children,
  5. Widget? icon,
})

Implementation

const MobileNavItem({
  required this.label,
  this.href,
  this.onTap,
  this.children,
  this.icon,
});