TextBubble constructor

const TextBubble({
  1. Key? key,
  2. bool isSender = true,
  3. required Widget widget,
  4. Widget? timeWidget,
  5. Color color = Colors.white70,
  6. bool tail = true,
  7. bool sent = false,
  8. bool delivered = false,
  9. bool seen = false,
})

Implementation

const TextBubble({
  super.key,
  this.isSender = true,
  required this.widget,
  this.timeWidget,
  this.color = Colors.white70,
  this.tail = true,
  this.sent = false,
  this.delivered = false,
  this.seen = false,
});