BottomBarDivider constructor

const BottomBarDivider({
  1. Key? key,
  2. required List<TabItem> items,
  3. required Color backgroundColor,
  4. List<BoxShadow>? boxShadow,
  5. double? blur,
  6. int indexSelected = 0,
  7. dynamic onTap(
    1. int index
    )?,
  8. EdgeInsets? paddingVertical,
  9. required Color color,
  10. required Color colorSelected,
  11. double iconSize = 22,
  12. TextStyle? titleStyle,
  13. CountStyle? countStyle,
  14. StyleDivider styleDivider = StyleDivider.top,
  15. Duration? duration,
  16. Curve? curve,
  17. bool animated = true,
  18. double? top = 12,
  19. double? bottom = 12,
  20. double? pad = 4,
  21. bool? enableShadow = true,
})

Implementation

const BottomBarDivider(
    {Key? key,
    required this.items,
    required this.backgroundColor,
    this.boxShadow,
    this.blur,
    this.indexSelected = 0,
    this.onTap,
    this.paddingVertical,
    required this.color,
    required this.colorSelected,
    this.iconSize = 22,
    this.titleStyle,
    this.countStyle,
    this.styleDivider = StyleDivider.top,
    this.duration,
    this.curve,
    this.animated = true,
    this.top = 12,
    this.bottom = 12,
    this.pad = 4,
    this.enableShadow = true})
    : super(key: key);