$unpackUint8 method

int $unpackUint8()

Implementation

int $unpackUint8() {
	final int value = _data!.buffer.asByteData().getUint8(_offset);
	_offset++;
	return value;
}