decode static method

List<int> decode(
  1. String str
)

Implementation

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