Bubble constructor

const Bubble({
  1. Key? key,
  2. BubbleColorType bubbleColorType = BubbleColorType.filled,
  3. required Color backgroundColor,
  4. List<Color>? highlightColors,
  5. List<double> radii = const [18, 18, 18, 0],
  6. Color? borderColor,
  7. double borderWidth = 1,
  8. required Widget child,
})

Implementation

const Bubble({
  super.key,
  this.bubbleColorType = BubbleColorType.filled,
  required this.backgroundColor,
  this.highlightColors,
  this.radii = const [18, 18, 18, 0],
  this.borderColor,
  this.borderWidth = 1,
  required this.child,
});