Nonce constructor

Nonce([
  1. List<int>? nonce
])

Implementation

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