DynamicNavigationDrawerWithoutIcon constructor
DynamicNavigationDrawerWithoutIcon({
- Key? key,
- required dynamic onTap(),
- required MaterialColor backgroundColorForMenu,
- required MaterialColor backgroundColorForDrawerHeader,
- MaterialColor? backgroundColorForDrawerPane,
- required double drawerWidth,
- required double drawerMenuHeight,
- required bool isDrawerHeaderRequired,
- String? accountName,
- String? accountEmail,
- String? imageUrl,
- required List tileList,
- required int initialSelectionIndex,
Implementation
DynamicNavigationDrawerWithoutIcon(
{Key? key,
required this.onTap,
required this.backgroundColorForMenu,
required this.backgroundColorForDrawerHeader,
this.backgroundColorForDrawerPane,
required this.drawerWidth,
required this.drawerMenuHeight,
this.menuFontColor,
this.menuFontSize,
this.menuTextAlign,
required this.isDrawerHeaderRequired,
required this.menuNotSelectedColor,
this.accountName,
this.accountEmail,
this.imageUrl,
required this.tileList,
required this.initialSelectionIndex})
: super(key: key);