InputBuilder_StakingUnbondingPath constructor
InputBuilder_StakingUnbondingPath({
- StakingInfo? params,
- Iterable<
PublicKeySignature> ? covenantCommitteeSignatures,
Implementation
factory InputBuilder_StakingUnbondingPath({
StakingInfo? params,
$core.Iterable<PublicKeySignature>? covenantCommitteeSignatures,
}) {
final result = create();
if (params != null) result.params = params;
if (covenantCommitteeSignatures != null)
result.covenantCommitteeSignatures.addAll(covenantCommitteeSignatures);
return result;
}