OutPoint constructor

OutPoint({
  1. List<int>? hash,
  2. int? vout,
})

Implementation

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