flush method
Flush all data to external storage.
Implementation
@override
void flush() {
_memoryPool.flush();
_recordPool.flush();
_header.modified = DateTime.now().millisecondsSinceEpoch;
_header.seal();
_header.write(_file);
_file.flushSync();
}