BasicChatBubble constructor

BasicChatBubble({
  1. BasicChatMessage? message,
  2. bool isMe = false,
  3. Color backgroundColor = Colors.blue,
  4. Color textColor = Colors.white,
  5. Widget? buttonWidget,
  6. String? buttonText,
})

Implementation

BasicChatBubble(
    {this.message,
    this.isMe = false,
    this.backgroundColor = Colors.blue,
    this.textColor = Colors.white,
    this.buttonWidget,
    this.buttonText});