writeInt8 method
Writes a value of type RInt8 at given address + byteOffset.
Implementation
@override void writeInt8(int value, [int byteOffset = 0]) { MemoryDebug.checkPointer(this, 'writeInt8', value, byteOffset); final ptr = _at<Int8>(byteOffset); ptr.value = value; MemoryTrace.checkWrite(ptr.address, 'Int8', value); }