hexStrToBytes method

Uint8List hexStrToBytes (String str)

Implementation

static Uint8List hexStrToBytes(String str) {
  return Uint8List.fromList(hex.decode(str));
}