hexToBytes method

Uint8List hexToBytes(
  1. String hexValue
)

Implementation

Uint8List hexToBytes(String hexValue) =>
    Uint8List.fromList(hex.decode(hexValue));