readUTF8 static method

String readUTF8(
  1. List<int> buff,
  2. int p,
  3. int l
)

Implementation

static String readUTF8(List<int> buff, int p, int l) {
  return readASCII(buff, p, l);
}