writeUint64 method
Writes an Uint64.
Implementation
int writeUint64(int n, [Endian endian = Endian.big]) {
final pos = bytesIO.position;
bytesIO.ensureCapacity(pos + 8);
_platform.setDataTypeHandlerUint64(_bytesData, n, pos);
bytesIO.incrementPosition(8);
return 8;
}