BubblePainter constructor

const BubblePainter({
  1. Color? color,
  2. Radius? radius,
  3. ArrowDirection arrowDirection = ArrowDirection.left,
  4. ArrowAlignment arrowAlignment = ArrowAlignment.start,
  5. double? arrowSize,
  6. double? arrowOffset,
  7. double? elevation,
})

Implementation

const BubblePainter({
  this.color,
  this.radius,
  this.arrowDirection = ArrowDirection.left,
  this.arrowAlignment = ArrowAlignment.start,
  this.arrowSize,
  this.arrowOffset,
  this.elevation,
});