We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5e0535 commit b4db1e4Copy full SHA for b4db1e4
lib/src/json_cache.dart
@@ -3,11 +3,11 @@ abstract class JsonCache {
3
/// Frees up storage space.
4
Future<void> clear();
5
6
- /// Updates data at [key], or creates a new cache line at [key] if there is no
+ /// Updates data at [key] or creates a new cache line at [key] if there is no
7
/// previous data there.
8
Future<void> refresh(String key, Map<String, dynamic> data);
9
10
- /// Removes data from cache at [key] and returns it, or returns null if there
+ /// Removes data from cache at [key] and returns it or returns null if there
11
/// is no data at [key].
12
Future<Map<String, dynamic>?> erase(String key);
13
0 commit comments