toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final recommendations = this.recommendations;
final scoreImpact = this.scoreImpact;
final verdict = this.verdict;
final weight = this.weight;
return {
'displayName': ?displayName,
'recommendations': ?recommendations,
'scoreImpact': ?scoreImpact,
'verdict': ?verdict,
'weight': ?weight,
};
}