encode static method

String encode(
  1. List<int> bytes
)

Implementation

static String encode(List<int> bytes) {
  return hex.encode(bytes);
}