NavItemBuilder constructor

NavItemBuilder({
  1. required WidgetRef ref,
  2. required List<AppStackMenuItem> items,
  3. Color? activeColor = Colors.white,
  4. Gradient? activeGradient,
  5. Color? inactiveColor,
  6. Color? backgroundColor,
  7. Color? inactiveBackgroundColor,
  8. Color? activeBackgroundColor,
})

Implementation

NavItemBuilder(
    {required this.ref,
    required this.items,
    this.activeColor = Colors.white,
    this.activeGradient,
    this.inactiveColor,
    this.backgroundColor,
    this.inactiveBackgroundColor,
    this.activeBackgroundColor});