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