# writeInt64Direct method | |
*[<Null safety>](https://dart.dev/null-safety)* | |
- @override | |
void writeInt64Direct | |
(int offset, int value) | |
<p>Writes int64 directly to VMO for immediate visibility.</p> | |
## Implementation | |
```dart | |
@override | |
void writeInt64Direct(int offset, int value) => writeInt64(offset, value); | |
``` | |