Removes the entry for key from the cache.
key
@override Future<void> remove(String key) async { final (jsonFile, expiryFile) = _filesFor(key); await _deleteEntry(jsonFile, expiryFile); }