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