OutPoint constructor

OutPoint({
  1. List<int>? txHash,
  2. Int64? outputIndex,
})

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