containsKey method

  1. @override
Future<bool> containsKey(
  1. K key
)
override

Checks if a key exists in the storage.

Implementation

@override
Future<bool> containsKey(K key) async {
  return _storage.containsKey(key);
}