TimestampedChatMessage constructor

const TimestampedChatMessage({
  1. Key? key,
  2. required String text,
  3. required String sentAt,
  4. Icon? sendingStatusIcon,
  5. TextStyle? style,
  6. TextStyle? sentAtStyle,
  7. TextStyle? showMoreTextStyle,
  8. int? maxLines,
  9. String delimiter = '\u2026',
  10. String viewMoreText = 'showMore',
})

Implementation

const TimestampedChatMessage({
  super.key,
  required this.text,
  required this.sentAt,
  this.sendingStatusIcon,
  this.style,
  this.sentAtStyle,
  this.showMoreTextStyle,
  this.maxLines,
  this.delimiter = '\u2026',
  this.viewMoreText = 'showMore',
});