QueryVotesResponse constructor
QueryVotesResponse({
- Iterable<
Vote> ? votes, - PageResponse? pagination,
Implementation
factory QueryVotesResponse({
$core.Iterable<$70.Vote>? votes,
$49.PageResponse? pagination,
}) {
final $result = create();
if (votes != null) {
$result.votes.addAll(votes);
}
if (pagination != null) {
$result.pagination = pagination;
}
return $result;
}