toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

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