removeAllStore method
删除所有缓存
Implementation
Future<dynamic> removeAllStore() async {
if (_store == null) {
_store = await CloudBaseStore().init();
}
return _store!.clear();
}
删除所有缓存
Future<dynamic> removeAllStore() async {
if (_store == null) {
_store = await CloudBaseStore().init();
}
return _store!.clear();
}