read static method

LiftRetVal<int> read(
  1. Uint8List buf
)

Implementation

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