BlockHash.fromHex constructor

BlockHash.fromHex(
  1. String hexBytes
)

Constructor to create a BlockHash from a hexadecimal string.

Implementation

BlockHash.fromHex(String hexBytes)
    : super.fromHex(hexBytes, AdaTransactionConstant.blake2b256DigestSize);