UnreadConversation.fromJson constructor
Implementation
UnreadConversation.fromJson(Map<String, dynamic> json)
: conversation = ConversationData.fromJson(json['conversation']),
lastMessage = Message.fromJson(json['lastMessage']),
unreadMessageCount = json['unreadMessageCount'];