QueryVoteByProposalVoterRequest constructor
QueryVoteByProposalVoterRequest({
- Int64? proposalId,
- String? voter,
Implementation
factory QueryVoteByProposalVoterRequest({
$fixnum.Int64? proposalId,
$core.String? voter,
}) {
final $result = create();
if (proposalId != null) {
$result.proposalId = proposalId;
}
if (voter != null) {
$result.voter = voter;
}
return $result;
}