hexDecode function

Uint8List hexDecode(
  1. String encoded
)

Decodes a hexadecimal encoded string.

Implementation

Uint8List hexDecode(final String encoded) => hex.decode(encoded);