extractUint8 method

int extractUint8()

Implementation

int extractUint8() {
  final extractedValue = data.getUint8(_offset);
  _offset += 1;
  return extractedValue;
}