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['showName'] = this.showName;
  data['faceURL'] = this.faceURL;
  data['messageCount'] = this.messageCount;
  if (this.messageList != null) {
    data['messageList'] = this.messageList!.map((v) => v.toJson()).toList();
  }
  return data;
}