getUint method
Reads a region of the buffer as an unsigned integer.
Items are read from the range [offset : offset+length].
The range must satisfy the relations 0 ≤ offset ≤ offset+length ≤ this.length.
Implementation
int getUint(final int offset, final int length, [final Endian endian = Endian.little]) {
final Iterable<int> values = _data.getRange(offset, offset + length);
return endian == Endian.big ? _getUintBE(values) : _getUintLE(values);
}