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,
  13. double center = 2,
  14. double arrowWidth = 8.0,
  15. double arrowHeight = 16.0,
  16. double minWidth = 30.0,
  17. double minHeight = 30.0,
})

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,
  this.center = 2,
  this.arrowWidth = 8.0,
  this.arrowHeight = 16.0,
  this.minWidth = 30.0,
  this.minHeight = 30.0,
}) : super(key: key);