LiveTalkMessageEntity constructor

LiveTalkMessageEntity({
  1. int? createdDate,
  2. int? lastUpdatedDate,
  3. String? id,
  4. String? tenantId,
  5. bool? isDeleted,
  6. String? roomId,
  7. String? memberType,
  8. String? type,
  9. String? action,
  10. String? content,
  11. String? kind,
  12. String? receivingGroupId,
  13. String? uuid,
  14. GuestInfo? guestInfo,
  15. List<Multimedias>? multimedias,
  16. List<Reactions>? reactions,
  17. LiveTalkMessageEntity? quoteMessage,
})

Implementation

LiveTalkMessageEntity({
  this.createdDate,
  this.lastUpdatedDate,
  this.id,
  this.tenantId,
  this.isDeleted,
  this.roomId,
  this.memberType,
  this.type,
  this.action,
  this.content,
  this.kind,
  this.receivingGroupId,
  this.uuid,
  this.guestInfo,
  this.multimedias,
  this.reactions,
  this.quoteMessage,
});