toJson method
Returns a JSON presentation of the object.
Implementation
@override
Map<String, Object> toJson() {
var result = <String, Object>{};
var analysis = this.analysis;
if (analysis != null) {
result['analysis'] = analysis.toJson();
}
var pub = this.pub;
if (pub != null) {
result['pub'] = pub.toJson();
}
return result;
}