Checks if a key exists.
key The key to check.
key
Returns true if the key exists, false otherwise.
@override Future<bool> containsKey(String key) async { return _storage.containsKey(key); }