BubbleShape constructor

const BubbleShape({
  1. required TooltipDirection preferredDirection,
  2. required Offset target,
  3. required double borderRadius,
  4. required double arrowTipRadius,
  5. required double arrowBaseWidth,
  6. required double arrowTipDistance,
  7. required Color borderColor,
  8. required double borderWidth,
  9. required double? left,
  10. required double? top,
  11. required double? right,
  12. required double? bottom,
  13. required EdgeInsetsGeometry bubbleDimensions,
})

Implementation

const BubbleShape({
  required this.preferredDirection,
  required this.target,
  required this.borderRadius,
  required this.arrowTipRadius,
  required this.arrowBaseWidth,
  required this.arrowTipDistance,
  required this.borderColor,
  required this.borderWidth,
  required this.left,
  required this.top,
  required this.right,
  required this.bottom,
  required this.bubbleDimensions,
});