OutPoint constructor

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

Implementation

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