onFlushComplete method

Future<void> onFlushComplete()

Notify storage that a flush cycle completed (for WAL checkpoint).

Implementation

Future<void> onFlushComplete() async {
  if (_dbAvailable) {
    await _sqliteStorage.onFlushComplete();
    _syncStorageState();
  }
}