removeAllStore method

Future removeAllStore()

删除所有缓存

Implementation

Future<dynamic> removeAllStore() async {
  if (_store == null) {
    _store = await CloudBaseStore().init();
  }

  return _store!.clear();
}