Conversation constructor
Conversation({})
Constructs a new Conversation
instance.
Requires a conversationType
and conversationWith
to be specified.
Other properties are optional.
Implementation
Conversation({
this.conversationId,
required this.conversationType,
required this.conversationWith,
this.lastMessage,
this.updatedAt,
this.unreadMessageCount = 0,
this.tags,
this.unreadMentionsCount = 0,
this.lastReadMessageId,
});