ProtoUpgradeVotes constructor
ProtoUpgradeVotes({})
Implementation
factory ProtoUpgradeVotes({
$core.Iterable<ProtoUpgradeVotes_ProtoUpgradeVote>? votes,
}) {
final _result = create();
if (votes != null) {
_result.votes.addAll(votes);
}
return _result;
}