pullUint24 method

int pullUint24()

Implementation

int pullUint24() {
  final h = pullUint8();
  final l = pullUint16();
  return (h << 16) | l;
}