toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customOutput = this.customOutput;
final explanation = this.explanation;
final score = this.score;
return {
'customOutput': ?customOutput,
'explanation': ?explanation,
'score': ?score,
};
}