Bubble constructor
const
Bubble({
- Key? key,
- required Widget child,
- double radius = 8,
- double arrowWidth = 12,
- double arrowHeight = 8,
- double arrowPositionPercent = 0.5,
- BubbleArrowDirection direction = BubbleArrowDirection.top,
- BubbleArrowShape arrowShape = BubbleArrowShape.triangle,
- bool arrowAdaptive = true,
- BoxDecoration? decoration,
- 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,
});