read static method

LiftRetVal<int> read(
  1. Uint8List buf
)

Implementation

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