BubbleShapeBorder constructor

BubbleShapeBorder({
  1. BubbleDirection direction = BubbleDirection.none,
  2. double arrowAngle = 6,
  3. double arrowHeight = 6,
  4. BubblePosition position = const BubblePosition.center(0),
  5. BubbleBoxBorder? border,
  6. double arrowQuadraticBezierLength = 0,
  7. BorderRadius? radius,
  8. double smooth = 1,
})

Implementation

BubbleShapeBorder({
  this.direction = BubbleDirection.none,
  this.arrowAngle = 6,
  this.arrowHeight = 6,
  this.position = const BubblePosition.center(0),
  this.border,
  this.arrowQuadraticBezierLength = 0,
  BorderRadius? radius,
  this.smooth = 1,
}) : radius = radius ?? BorderRadius.circular(4);