ListCommentReports constructor
- @JsonSerializable.new(includeIfNull: false)
const
ListCommentReports(
{
- int? limit,
- int? page,
- @JsonKey.new(name: 'unresolved_only') bool? unresolvedOnly,
- 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;