toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['notificationMsgType'] = this.notificationMsgType;
  data['replyUserName'] = this.replyUserName;
  data['replyUserID'] = this.replyUserID;
  data['content'] = this.content;
  data['contentID'] = this.contentID;
  data['workMomentID'] = this.workMomentID;
  data['userID'] = this.userID;
  data['userName'] = this.userName;
  data['faceURL'] = this.faceURL;
  data['workMomentContent'] = this.workMomentContent;
  data['createTime'] = this.createTime;
  return data;
}