BottomBarBubble constructor

const BottomBarBubble({
  1. Key? key,
  2. required List<BottomBarItem> items,
  3. int selectedIndex = 0,
  4. double height = 71,
  5. double bubbleSize = 10,
  6. Color color = Colors.green,
  7. Color backgroundColor = Colors.white,
  8. ValueChanged<int>? onSelect,
})

Implementation

const BottomBarBubble({
  Key? key,
  required this.items,
  this.selectedIndex = 0,
  this.height = 71,
  this.bubbleSize = 10,
  this.color = Colors.green,
  this.backgroundColor = Colors.white,
  this.onSelect,
}) : super(key: key);