read static method

LiftRetVal<String> read(
  1. Uint8List buf
)

Implementation

static LiftRetVal<String> read(Uint8List buf) {
  final end = buf.buffer.asByteData(buf.offsetInBytes).getInt32(0) + 4;
  return LiftRetVal(utf8.decoder.convert(buf, 4, end), end);
}