toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['pushId'] = this.pushId;
data['notiType'] = this.notiType;
data['notiMsgTitle'] = this.notiMsgTitle;
data['notiMsg'] = this.notiMsg;
data['notiLnkUrl'] = this.notiLnkUrl;
data['notiImgUrl'] = this.notiImgUrl;
data['reportUrl'] = this.reportUrl;
return data;
}