Find the given key contains in keys.
key
@override Future<bool> containsKey(String key) { return entries.any((element) => element.key == key); }