toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final scorePath = this.scorePath;
final title = this.title;
return {
'description': ?description,
'scorePath': ?scorePath,
'title': ?title,
};
}