VgkHomeDrawer constructor

const VgkHomeDrawer({
  1. Key? key,
  2. required VgkDrawerIndex screenIndex,
  3. required AnimationController iconAnimationController,
  4. required dynamic callBackIndex(
    1. VgkDrawerIndex
    ),
  5. required List<VgkDrawerList> data,
  6. required String appTitle,
  7. required String appIcon,
  8. required String primaryColor,
})

Implementation

const VgkHomeDrawer({
  Key? key,
  required this.screenIndex,
  required this.iconAnimationController,
  required this.callBackIndex,
  required this.data,
  required this.appTitle,
  required this.appIcon,
  required this.primaryColor,
}) : super(key: key);