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