SearchConversationDatum constructor

const SearchConversationDatum({
  1. int? id,
  2. String? companyId,
  3. String? socialAccountId,
  4. dynamic contactId,
  5. String? senderId,
  6. String? senderName,
  7. String? senderPhoto,
  8. String? receiverId,
  9. String? receiverName,
  10. String? receiverPhoto,
  11. String? lastMessage,
  12. String? lastMessageType,
  13. String? profilePhoto,
  14. String? status,
  15. DateTime? createdAt,
  16. DateTime? updatedAt,
})

Implementation

const SearchConversationDatum({
  this.id,
  this.companyId,
  this.socialAccountId,
  this.contactId,
  this.senderId,
  this.senderName,
  this.senderPhoto,
  this.receiverId,
  this.receiverName,
  this.receiverPhoto,
  this.lastMessage,
  this.lastMessageType,
  this.profilePhoto,
  this.status,
  this.createdAt,
  this.updatedAt,
});