ArcaneNavTile constructor

const ArcaneNavTile({
  1. required String label,
  2. Component? icon,
  3. void onTap()?,
  4. bool selected = false,
  5. bool disabled = false,
  6. String? badge,
  7. Key? key,
})

Implementation

const ArcaneNavTile({
  required this.label,
  this.icon,
  this.onTap,
  this.selected = false,
  this.disabled = false,
  this.badge,
  super.key,
});