DrawerHead constructor

const DrawerHead({
  1. Key? key,
  2. required String drawerTitle,
  3. required bool drawerDeployed,
  4. required VoidCallback handleToggleDrawerDeploy,
})

Implementation

const DrawerHead({
  super.key,
  required this.drawerTitle,
  required this.drawerDeployed,
  required this.handleToggleDrawerDeploy,
});