V2TimConversationResult.fromJson constructor
Implementation
V2TimConversationResult.fromJson(Map<String, dynamic> json) {
  nextSeq = json['nextSeq'];
  isFinished = json['isFinished'];
  if (json['conversationList'] != null) {
    conversationList = List.empty(growable: true);
    json['conversationList'].forEach((v) {
      conversationList!.add(V2TimConversation.fromJson(v));
    });
  }
}