readLatin1 method

String readLatin1(
  1. List<int> byteList
)

Implementation

String readLatin1(List<int> byteList) {
  return String.fromCharCodes(byteList);
}