hexToBytes function

List<int> hexToBytes(
  1. String hexStr
)

sequence.

Implementation

List<int> hexToBytes(String hexStr) {
  return hex.decode(strip0xHex(hexStr));
}