NavListTile constructor

const NavListTile({
  1. Key? key,
  2. bool inDrawer = false,
  3. required NavItemPosition? itemPosition,
  4. bool? enableRouteNavigation = true,
  5. AnimationType animationType = AnimationType.fade,
  6. double? indicatorLineThickness = 4,
  7. BoxDecoration? customDecoration,
  8. PageIndicator? pageIndicator = PageIndicator.line,
  9. required int selectedPageIndex,
  10. required dynamic onPageSelected(
    1. int
    ),
  11. required NavItem data,
  12. TextStyle? navTextStyle,
})

Implementation

const NavListTile(
    {Key? key,
      this.inDrawer = false,
     required this.itemPosition,
    this.enableRouteNavigation = true,
    this.animationType = AnimationType.fade,
    this.indicatorLineThickness = 4,
    this.customDecoration,
    this.pageIndicator = PageIndicator.line,
    required this.selectedPageIndex,
    required this.onPageSelected,
    required this.data,
    this.navTextStyle})
    : super(key: key);