OutPoint constructor
Implementation
factory OutPoint({
$core.List<$core.int>? hash,
$core.int? vout,
$core.int? tree,
}) {
final result = create();
if (hash != null) result.hash = hash;
if (vout != null) result.vout = vout;
if (tree != null) result.tree = tree;
return result;
}