save method
Implementation
@override
Future<void> save(FeedEntryModel model) async {
assert(_cacheStore != null, "You need to run init first!");
await _cacheStore!.put(model.title, model);
}
@override
Future<void> save(FeedEntryModel model) async {
assert(_cacheStore != null, "You need to run init first!");
await _cacheStore!.put(model.title, model);
}