ChatBubble constructor

ChatBubble({
  1. Key? key,
  2. String? message,
  3. Color? bubbleColor,
  4. TextStyle? bubbleTextStyle,
  5. bool? isReciever,
  6. bool? isSeen,
})

Implementation

ChatBubble({
  Key? key,
  this.message,
  this.bubbleColor,
  this.bubbleTextStyle,
  this.isReciever,
  this.isSeen,
}) : super(key: key);