dynamic_cache 1.0.2 dynamic_cache: ^1.0.2 copied to clipboard
A complete in-memory cache in Flutter. Inspired by IMemoryCache from C# and Others tools.
import 'package:example/app.dart';
import 'package:dynamic_cache/dynamic_cache.dart';
void main() {
runApp(
const DynamicCacheProvider(
/// Retrieve or create the cache instance
cache: DynamicCache.instance,
child: DynamicCacheApp(),
),
);
}