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