YIMConversation.fromJson constructor

YIMConversation.fromJson(
  1. Map<String, dynamic> map
)

Implementation

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