InboxMessage constructor

InboxMessage({
  1. String id = "",
  2. String ownerId = "",
  3. String profileName = "",
  4. String profileImgUrl = "",
  5. String text = "",
  6. int createdTime = 0,
  7. int seenTime = 0,
  8. AppMediaType type = AppMediaType.text,
  9. String mediaUrl = "",
  10. String referenceId = "",
  11. List<String> likedProfiles = const [],
})

Implementation

InboxMessage({
  this.id = "",
  this.ownerId = "",
  this.profileName = "",
  this.profileImgUrl = "",
  this.text = "",
  this.createdTime = 0,
  this.seenTime = 0,
  this.type = AppMediaType.text,
  this.mediaUrl = "",
  this.referenceId = "",
  this.likedProfiles = const []
});