Deletes the entry for the given key.
key
Does nothing if the key is not found.
@override Future<void> delete(String key) async { if (_needsInit) await _initPrefs(); await _prefs!.remove(key); }