toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final data = Map<String, dynamic>();
  data['conversationID'] = this.conversationID;
  data['conversationType'] = this.conversationType;
  data['userID'] = this.userID;
  data['groupID'] = this.groupID;
  data['showName'] = this.showName;
  data['faceURL'] = this.faceURL;
  data['recvMsgOpt'] = this.recvMsgOpt;
  data['unreadCount'] = this.unreadCount;
  data['latestMsg'] = this.latestMsg?.toJson();
  data['latestMsgSendTime'] = this.latestMsgSendTime;
  data['draftText'] = this.draftText;
  data['draftTextTime'] = this.draftTextTime;
  data['isPinned'] = this.isPinned;
  data['isPrivateChat'] = this.isPrivateChat;
  data['burnDuration'] = this.burnDuration;
  data['isNotInGroup'] = this.isNotInGroup;
  data['groupAtType'] = this.groupAtType;
  data['ex'] = this.ex;
  data['isMsgDestruct'] = this.isMsgDestruct;
  data['msgDestructTime'] = this.msgDestructTime;
  return data;
}