OutPoint constructor
Implementation
factory OutPoint({
$core.List<$core.int>? txHash,
$fixnum.Int64? outputIndex,
}) {
final result = create();
if (txHash != null) result.txHash = txHash;
if (outputIndex != null) result.outputIndex = outputIndex;
return result;
}