getUInt32 static method

int getUInt32(
  1. Uint8List buf,
  2. int offset
)

Implementation

static int getUInt32(Uint8List buf, int offset) {
  return (buf[offset] & 0xff) |
      ((buf[offset + 1] & 0xff) << 8) |
      ((buf[offset + 2] & 0xff) << 16) |
      ((buf[offset + 3] & 0xff) << 24);
}