flushStore method

Future<void> flushStore()

flushes the store, persisting all pending changes to the disk

Implementation

Future<void> flushStore() {
  return _handleSingleResponseCommand((sendPort) => FlushCommand(sendPort));
}