Nonce constructor
Implementation
Nonce([List<int>? nonce])
: hash =
nonce == null
? null
: AdaTransactionUtils.validateFixedLengthBytes(
bytes: nonce,
length: AdaTransactionConstant.blake2b256DigestSize,
);