ESDrawer<T> constructor

const ESDrawer<T>({
  1. required T screenIndex,
  2. required AnimationController iconAnimationController,
  3. required dynamic callBackItem(
    1. ESDrawerItem?
    ),
  4. required List<ESDrawerItem> drawerList,
  5. String? title = '',
  6. String? subTitle = '',
  7. TextStyle? titleStyle,
  8. TextStyle? subTitleStyle,
  9. Key? key,
})

Implementation

const ESDrawer({
  required this.screenIndex,
  required this.iconAnimationController,
  required this.callBackItem,
  required this.drawerList,
  this.assetLogo = '',
  this.title = '',
  this.subTitle = '',
  this.titleStyle,
  this.subTitleStyle,
  Key? key,
}) : super(key: key);