hexDecode static method

List<int> hexDecode(
  1. String s
)

Implementation

static List<int> hexDecode(String s) {
  return hex.decode(s);
}