YIMConversation.fromJson constructor
Implementation
YIMConversation.fromJson(Map<String, dynamic> map) {
unRead = double.parse(map["unRead"]?.toString() ?? "0").toInt();
lastMessage = YIMMessage.fromJson(map["lastMessage"] as Map<String, dynamic>);
}