GetCommentReportListResponse constructor

const GetCommentReportListResponse({
  1. @JsonKey.new(name: 'comment_reports') required List<CommentReportView> commentReports,
  2. @JsonKey.new(name: 'next_page') String? nextPage,
})

Implementation

const factory GetCommentReportListResponse({@JsonKey(name: 'comment_reports') required List<CommentReportView> commentReports, @JsonKey(name: 'next_page') String? nextPage}) =
    _GetCommentReportListResponse;