GetPostReportListResponse constructor

const GetPostReportListResponse({
  1. @JsonKey.new(name: 'post_reports') required List<PostReportView> postReports,
  2. @JsonKey.new(name: 'next_page') String? nextPage,
})

Implementation

const factory GetPostReportListResponse({@JsonKey(name: 'post_reports') required List<PostReportView> postReports, @JsonKey(name: 'next_page') String? nextPage}) = _GetPostReportListResponse;