hexToBytes method

Uint8List hexToBytes (
  1. String s
)

Returns bytes from hex s.

Implementation

static Uint8List hexToBytes(String s) {
  return hex.decode(s);
}