toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'count_by_rating'] = this.countByRating;
  json[r'unreported_count'] = this.unreportedCount;
  return json;
}