hexDecode function

Uint8List hexDecode(
  1. String encoded
)

Decodes a hexadecimal encoded string.

Implementation

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