readBlock32 method

Uint8List readBlock32([
  1. int offset = 0
])

Reads a bytes block, using a Uint32 prefix (4 bytes of length prefix).

Implementation

Uint8List readBlock32([int offset = 0]) {
  var sz = getUint32(offset);
  var bs = readBytes(offset + 4, sz);
  return bs;
}