RollingBottomBar constructor

RollingBottomBar({
  1. Key? key,
  2. @required PageController? controller,
  3. @required List<RollingBottomBarItem>? items,
  4. @required ValueChanged<int>? onTap,
  5. Color color = Colors.white,
  6. Color? itemColor,
  7. Color? activeItemColor,
  8. bool? enableIconRotation,
  9. bool? flat = false,
})

Implementation

RollingBottomBar(
    {Key? key,
    @required this.controller,
    @required this.items,
    @required this.onTap,
    this.color = Colors.white,
    this.itemColor,
    this.activeItemColor,
    this.enableIconRotation,
    this.flat = false})
    : super(key: key);