toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (comments != null) 'comments': comments!,
      if (labelVotes != null) 'labelVotes': labelVotes!,
      if (score != null) 'score': score!,
      if (totalVotes != null) 'totalVotes': totalVotes!,
    };