KiteAppDrawer constructor

const KiteAppDrawer({
  1. required List<KiteDrawerDestination> destinations,
  2. required int selectedIndex,
  3. required ValueChanged<int> onDestinationSelected,
  4. Key? key,
  5. Widget? header,
  6. Widget? footer,
})

Implementation

const KiteAppDrawer({
  required this.destinations,
  required this.selectedIndex,
  required this.onDestinationSelected,
  super.key,
  this.header,
  this.footer,
});