BottomBarBubbleIcon constructor

const BottomBarBubbleIcon({
  1. Key? key,
  2. required BottomBarItem item,
  3. required Color color,
  4. bool isSelected = false,
})

Implementation

const BottomBarBubbleIcon({
  Key? key,
  required this.item,
  required this.color,
  this.isSelected = false,
}) : super(key: key);