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