wuchuheng_local_cache 0.0.2
wuchuheng_local_cache: ^0.0.2 copied to clipboard
This is a local cache libery.
This is a local cache library.
Features #
- Local cache
Getting started #
start using the package.
Usage #
import 'package:local_cache/src/local_cache_base.dart';
void main() async {
LocalCache localCache = LocalCache();
String key = 'keyName';
String value = "valueData";
await localCache.set(key: key, value: value);
// expect(awesome.isAwesome, isTrue);
}