read static method
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);
}
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);
}