ArcaneNavItem constructor

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

Implementation

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