删除缓存
Future<dynamic> removeStore(String key) async { if (_store == null) { _store = await CloudBaseStore().init(); } return _store!.remove(key); }