$unpackInt8 method

int $unpackInt8()

Implementation

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