remove value
Future<bool> remove(String key) async { Map store = await _getStoreMap(); store.remove(key); return _setStoreMap(store); }