PreSigningOutput_Sighash constructor
PreSigningOutput_Sighash({
- List<
int> ? publicKey, - List<
int> ? sighash, - PreSigningOutput_SigningMethod? signingMethod,
- PreSigningOutput_TaprootTweak? tweak,
Implementation
factory PreSigningOutput_Sighash({
$core.List<$core.int>? publicKey,
$core.List<$core.int>? sighash,
PreSigningOutput_SigningMethod? signingMethod,
PreSigningOutput_TaprootTweak? tweak,
}) {
final $result = create();
if (publicKey != null) {
$result.publicKey = publicKey;
}
if (sighash != null) {
$result.sighash = sighash;
}
if (signingMethod != null) {
$result.signingMethod = signingMethod;
}
if (tweak != null) {
$result.tweak = tweak;
}
return $result;
}