DataHash.fromHex constructor

DataHash.fromHex(
  1. String hexBytes
)

Constructor to create a data hash from a hexadecimal string.

Implementation

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