BubbleBarItem constructor

BubbleBarItem({
  1. required Widget icon,
  2. Widget? title,
  3. Widget? activeIcon,
  4. bool showBadge = false,
  5. Color badgeColor = Colors.black,
  6. Color? backgroundColor = Colors.green,
  7. Widget? badge,
  8. BorderRadius badgeRadius = BorderRadius.zero,
  9. Color? borderColor = Colors.black,
})

Implementation

BubbleBarItem({
  required this.icon,
  this.title,
  this.activeIcon,
  this.showBadge = false,
  this.badgeColor = Colors.black,
  this.backgroundColor = Colors.green,
  this.badge,
  this.badgeRadius = BorderRadius.zero,
  this.borderColor = Colors.black,
});