Output_OutputTaprootScriptPath constructor
Implementation
factory Output_OutputTaprootScriptPath({
$core.List<$core.int>? internalKey,
$core.List<$core.int>? merkleRoot,
}) {
final $result = create();
if (internalKey != null) {
$result.internalKey = internalKey;
}
if (merkleRoot != null) {
$result.merkleRoot = merkleRoot;
}
return $result;
}