Bubble constructor
const
Bubble({
- Key? key,
- BubbleDirection direction = BubbleDirection.left,
- required Widget child,
- Decoration? decoration,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- BoxConstraints? constraints,
- double? width,
- double? height,
- Alignment? alignment,
- Radius? borderRadius,
- bool? left,
Implementation
const Bubble(
{Key? key,
this.direction = BubbleDirection.left,
required this.child,
this.decoration,
this.padding,
this.margin,
this.constraints,
this.width,
this.height,
this.alignment,
this.borderRadius,
this.left})
: super(key: key);