OutPoint.fromHex constructor

OutPoint.fromHex(
  1. String hash,
  2. int n
)

Takes the reversed transaction hash as hex

Implementation

OutPoint.fromHex(String hash, int n)
  : this(Uint8List.fromList(hexToBytes(hash).reversed.toList()), n);