Removes the value associated with the given key.
key
@override Future<void> remove(String key) async { final prefs = await _getPrefs(); await prefs.remove(key); }