read static method

LiftRetVal<int> read(
  1. Uint8List buf
)

Implementation

static LiftRetVal<int> read(Uint8List buf) {
  return LiftRetVal(buf.buffer.asByteData(buf.offsetInBytes).getUint8(0), 1);
}