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