AdaptiveDestination constructor

const AdaptiveDestination({
  1. required Widget icon,
  2. required String label,
  3. required AdaptivePage page,
  4. bool? showOnNavigationRail,
  5. bool? showOnBottomAppBar,
  6. bool showOnDrawerSidebar = true,
  7. bool showOnDrawerWhenBottomWithDrawer = true,
})

Implementation

const AdaptiveDestination({
  required this.icon,
  required this.label,
  required this.page,
  this.showOnNavigationRail,
  this.showOnBottomAppBar,
  this.showOnDrawerSidebar = true,
  this.showOnDrawerWhenBottomWithDrawer = true,
});