toJson method
Implementation
@override
Map<String, dynamic> toJson() {
return Map<String, dynamic>.from({
"conversationList": _conversationList.map((e) => e.toJson()).toList(),
"currentGetConversationListSeq": currentGetConversationListSeq,
"getConversationListCount": getConversationListCount,
"isGetConversationFinished": isGetConversationFinished,
});
}