toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'count'] = this.count;
    json[r'first_reaction_at'] = this.firstReactionAt.toUtc().toIso8601String();
    json[r'last_reaction_at'] = this.lastReactionAt.toUtc().toIso8601String();
    json[r'sum_scores'] = this.sumScores;
  return json;
}