toJson method

Map<String, dynamic> toJson()

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,
  };
}