ConversationItemModel constructor

ConversationItemModel({
  1. required ChatUIKitProfile profile,
  2. Message? lastMessage,
  3. int unreadCount = 0,
  4. bool noDisturb = false,
  5. bool pinned = false,
  6. bool hasMention = false,
  7. Map<String, String>? attributes,
})

Implementation

ConversationItemModel({
  required this.profile,
  this.lastMessage,
  this.unreadCount = 0,
  this.noDisturb = false,
  this.pinned = false,
  this.hasMention = false,
  this.attributes,
});