toJson method
Implementation
core.Map<core.String, core.Object> toJson() {
final core.Map<core.String, core.Object> _json =
new core.Map<core.String, core.Object>();
if (kind != null) {
_json["kind"] = kind;
}
if (performanceReport != null) {
_json["performanceReport"] =
performanceReport.map((value) => (value).toJson()).toList();
}
return _json;
}