ConversationMessage constructor

const ConversationMessage({
  1. int? id,
  2. String? uid,
  3. String? companyUid,
  4. String? contactUid,
  5. dynamic instagramMessageId,
  6. String? senderId,
  7. String? recipientId,
  8. String? messageFrom,
  9. String? messageType,
  10. String? message,
  11. String? storyId,
  12. bool? isStory,
  13. String? storyUrl,
  14. String? status,
  15. String? platform,
  16. String? timestamp,
  17. DateTime? createdAt,
  18. DateTime? updatedAt,
  19. Contact? contact,
  20. Facebook? facebookConnection,
  21. Twitter? twitterConnection,
  22. Instagram? instagramConnection,
})

Implementation

const ConversationMessage({
  this.id,
  this.uid,
  this.companyUid,
  this.contactUid,
  this.instagramMessageId,
  this.senderId,
  this.recipientId,
  this.messageFrom,
  this.messageType,
  this.message,
  this.storyId,
  this.isStory,
  this.storyUrl,
  this.status,
  this.platform,
  this.timestamp,
  this.createdAt,
  this.updatedAt,
  this.contact,
  this.facebookConnection,
  this.twitterConnection,
  this.instagramConnection,
});