set value
Future<bool> set(String key, dynamic value) async { Map store = await _getStoreMap(); store[key] = value; return _setStoreMap(store); }