ListCommentLikesResponse constructor

const ListCommentLikesResponse({
  1. @JsonKey.new(name: 'comment_likes') required List<CommentLikeView> commentLikes,
  2. @JsonKey.new(name: 'next_page') String? nextPage,
})

Implementation

const factory ListCommentLikesResponse({@JsonKey(name: 'comment_likes') required List<CommentLikeView> commentLikes, @JsonKey(name: 'next_page') String? nextPage}) = _ListCommentLikesResponse;