DynamicNavigationDrawerWithoutIcon constructor

DynamicNavigationDrawerWithoutIcon({
  1. Key? key,
  2. required dynamic onTap(
    1. String,
    2. int
    ),
  3. required MaterialColor backgroundColorForMenu,
  4. required MaterialColor backgroundColorForDrawerHeader,
  5. MaterialColor? backgroundColorForDrawerPane,
  6. required double drawerWidth,
  7. required double drawerMenuHeight,
  8. Color? menuFontColor,
  9. double? menuFontSize,
  10. TextAlign? menuTextAlign,
  11. required bool isDrawerHeaderRequired,
  12. required MaterialColor menuNotSelectedColor,
  13. String? accountName,
  14. String? accountEmail,
  15. String? imageUrl,
  16. required List tileList,
  17. 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);