readString method

String readString()

Implementation

String readString() {
  int sz = readSize();
  return String.fromCharCodes(readBlob(sz));
}