readUnsignedChar method
Reads a value of type RUnsignedChar at given address + byteOffset.
Implementation
@override int readUnsignedChar([int byteOffset = 0]) { MemoryDebug.checkPointer(this, 'readUnsignedChar', byteOffset); final ptr = _at<UnsignedChar>(byteOffset); final value = ptr.value; MemoryTrace.checkRead(ptr.address, 'UnsignedChar', value); return value; }