Bubble constructor

const Bubble({
  1. Key? key,
  2. BubbleDirection direction = BubbleDirection.left,
  3. required Widget child,
  4. Decoration? decoration,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? margin,
  7. BoxConstraints? constraints,
  8. double? width,
  9. double? height,
  10. Alignment? alignment,
  11. Radius? borderRadius,
  12. 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);