u24 method

int u24()

Implementation

int u24() {
  require(3);
  final int value = (bytes[_pos] << 16) | (bytes[_pos + 1] << 8) | bytes[_pos + 2];
  _pos += 3;
  return value;
}