NavTileProps constructor

const NavTileProps({
  1. required String label,
  2. Widget? icon,
  3. bool selected = false,
  4. bool disabled = false,
  5. String? badge,
  6. void onTap()?,
})

Implementation

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