ChatBubble constructor

const ChatBubble({
  1. Key? key,
  2. required bool userSent,
  3. required bool isFirst,
  4. required ChatMessage widget,
  5. required EcodeskMessage nextMsg,
  6. required EcodeskMessage msg,
  7. required bool isLast,
  8. required bool isTimeSentVisible,
  9. required double maxWidth,
  10. required String text,
  11. required String? longDay,
  12. required bool containsAttachment,
})

Implementation

const ChatBubble({
  super.key,
  required this.userSent,
  required this.isFirst,
  required this.widget,
  required this.nextMsg,
  required this.msg,
  required this.isLast,
  required this.isTimeSentVisible,
  required this.maxWidth,
  required this.text,
  required this.longDay,
  required this.containsAttachment,
});