toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final changeReports = this.changeReports;
final diagnostics = this.diagnostics;
final id = this.id;
final serviceName = this.serviceName;
return {
'changeReports': ?changeReports,
'diagnostics': ?diagnostics,
'id': ?id,
'serviceName': ?serviceName,
};
}