Bubble constructor

const Bubble({
  1. Key? key,
  2. required Widget child,
  3. double radius = 8,
  4. double arrowWidth = 12,
  5. double arrowHeight = 8,
  6. double arrowPositionPercent = 0.5,
  7. BubbleArrowDirection direction = BubbleArrowDirection.top,
  8. BubbleArrowShape arrowShape = BubbleArrowShape.triangle,
  9. bool arrowAdaptive = true,
  10. BoxDecoration? decoration,
  11. Clip clipBehavior = Clip.none,
})

Implementation

const Bubble({
  super.key,
  required this.child,
  this.radius = 8,
  this.arrowWidth = 12,
  this.arrowHeight = 8,
  this.arrowPositionPercent = 0.5,
  this.direction = BubbleArrowDirection.top,
  this.arrowShape = BubbleArrowShape.triangle,
  this.arrowAdaptive = true,
  this.decoration,
  this.clipBehavior = Clip.none,
});