toJson method

Map<String, dynamic> toJson()

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