ListCommentReports constructor

  1. @JsonSerializable.new(includeIfNull: false)
const ListCommentReports({
  1. @JsonKey.new(name: 'comment_id') int? commentId,
  2. @JsonKey.new(name: 'community_id') int? communityId,
  3. int? limit,
  4. int? page,
  5. @JsonKey.new(name: 'unresolved_only') bool? unresolvedOnly,
  6. required String auth,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ListCommentReports({
  @JsonKey(name: 'comment_id') int? commentId,
  @JsonKey(name: 'community_id') int? communityId,
  int? limit,
  int? page,
  @JsonKey(name: 'unresolved_only') bool? unresolvedOnly,
  required String auth,
}) = _ListCommentReports;