clear method

  1. @override
Future<void> clear()
override

Clears all snapshots from storage.

Returns: A Future that completes when all snapshots are cleared.

Implementation

@override
Future<void> clear() async {
  _storage.clear();
  debugPrint('[Checkpoint] Cleared all snapshots from memory');
}