ResponsiveNavigationDestination constructor

const ResponsiveNavigationDestination({
  1. required String label,
  2. required IconData icon,
  3. IconData? selectedIcon,
  4. Widget? customLeading,
  5. Widget? customTitle,
})

Implementation

const ResponsiveNavigationDestination({
  required this.label,
  required this.icon,
  this.selectedIcon,
  this.customLeading,
  this.customTitle,
});