hexDecode static method

CryptoStep<String, Uint8List> hexDecode()

Decodes strict hexadecimal text to bytes.

Implementation

static CryptoStep<String, Uint8List> hexDecode() => const _OperationStep(
  'encoding.hex.decode',
  CryptoBytes.decodeHex,
  _EncodingDescriptor(_EncodingOperation.hexDecode),
);