rx_cache_manager 0.0.11+2
rx_cache_manager: ^0.0.11+2 copied to clipboard
RxCacheManager is a caching library for Flutter that provides a simple and flexible way to cache data and retrieve it efficiently. It uses a strategy-based approach, allowing you to define different c [...]
0.0.1 #
- cache_manager initial release.
0.0.5 #
- added write to RxCacheManager
0.0.6 #
- added transformer to RxCacheManager withAsync
0.0.9 #
- added CacheAndAsyncStrategy to RxCacheManager
Future<T> withAsync<A>(
AsyncBloc<A> asyncBloc, {
T Function(A data)? transformer,
}).execute()
0.0.10 #
- added has and keys to RxCacheManager => Storage
Future<bool> has(String key, {String? prefix});
Future<List<String>> keys({String? prefix});
0.0.11 #
- fixed bugs
0.0.11+1 #
- hot fixed bugs
0.0.11+2 #
- hot fixed bugs