DachshundMessageBubble constructor

const DachshundMessageBubble({
  1. Key? key,
  2. required String message,
  3. required bool isFromUser,
  4. Color? bubbleColor,
  5. Color? textColor,
})

Implementation

const DachshundMessageBubble({
  super.key,
  required this.message,
  required this.isFromUser,
  this.bubbleColor,
  this.textColor,
});