LinkDestination constructor

const LinkDestination(
  1. {Key? key,
  2. required VoidCallback onTap,
  3. required IconData icon,
  4. required Widget label}
)

Implementation

const LinkDestination({
  super.key,
  required this.onTap,
  required this.icon,
  required this.label,
});