ChatBubble constructor

const ChatBubble({
  1. Key? key,
  2. BoxConstraints? constraints,
  3. Color? backgroundColor,
  4. Widget? child,
  5. required BubbleType bubbleType,
})

Implementation

const ChatBubble({
  Key? key,
  this.constraints,
  this.backgroundColor,
  this.child,
  required this.bubbleType,
}) : super(key: key);