ArcaneNavLink constructor

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

Implementation

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