VoteDelegation constructor
VoteDelegation({
- String? stakingAddress,
- VoteDelegation_DRepType? drepType,
- String? drepId,
Implementation
factory VoteDelegation({
$core.String? stakingAddress,
VoteDelegation_DRepType? drepType,
$core.String? drepId,
}) {
final $result = create();
if (stakingAddress != null) {
$result.stakingAddress = stakingAddress;
}
if (drepType != null) {
$result.drepType = drepType;
}
if (drepId != null) {
$result.drepId = drepId;
}
return $result;
}