BubbleBarOptions constructor

BubbleBarOptions({
  1. BubbleBarStyle barStyle = BubbleBarStyle.horizontal,
  2. BubbleFillStyle bubbleFillStyle = BubbleFillStyle.fill,
  3. double iconSize = 26.0,
  4. bool inkEffect = false,
  5. Color unselectedIconColor = Colors.black,
  6. BorderRadius? borderRadius,
  7. EdgeInsets padding = EdgeInsets.zero,
  8. Color inkColor = Colors.grey,
  9. double? opacity = 0.8,
})

Implementation

BubbleBarOptions({
  this.barStyle = BubbleBarStyle.horizontal,
  this.bubbleFillStyle = BubbleFillStyle.fill,
  this.iconSize = 26.0,
  this.inkEffect = false,
  this.unselectedIconColor = Colors.black,
  this.borderRadius,
  this.padding = EdgeInsets.zero,
  this.inkColor = Colors.grey,
  this.opacity = 0.8,
});