Skip to content

Commit 84ccc66

Browse files
authored
doc(README): enhance the content about the JsonCache interface
1 parent 6bef1d6 commit 84ccc66

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ specific caching requirements.
2525

2626
**Why Json?**
2727

28-
- Because most of the available local storage packages for Flutter applications
28+
- Because most of the local storage packages available for Flutter applications
2929
use json as the data format.
30-
- There is a one-to-one relationship between the Dart's built-in type
31-
```Map<String, dynamic>``` and json, which makes the json encoding/decoding a
30+
- There is an one-to-one relationship between the Dart's built-in type
31+
```Map<String, dynamic>``` and json, which makes json encoding/decoding a
3232
trivial task.
3333

3434
## Getting Started
3535

36-
The concept of cached data is represented by the package's core interface
37-
```JsonCache```, which is defined as:
36+
```JsonCache``` - the core interface of this package - represents the concept of
37+
cached data. It is defined as:
3838

3939
```dart
4040
/// Represents a cached json data.

0 commit comments

Comments
 (0)