Output_OutputTaprootScriptPath constructor

Output_OutputTaprootScriptPath({
  1. List<int>? internalKey,
  2. List<int>? merkleRoot,
})

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;
}