ChatMessage constructor

ChatMessage({
  1. required ChatMessageDetail message,
  2. String? id,
  3. bool? fromMe,
  4. List<QuickReplyMessage>? quickReplyMessage,
  5. String? time,
  6. bool? isShowQuickReply,
  7. bool? showAvatar,
  8. bool? showAction,
  9. bool? rated,
  10. bool? like,
  11. bool? isLoading,
})

Implementation

ChatMessage({
  required this.message,
  this.id,
  this.fromMe,
  this.quickReplyMessage,
  this.time,
  this.isShowQuickReply,
  this.showAvatar,
  this.showAction,
  this.rated,
  this.like,
  this.isLoading,
});