containsKey<T extends Object> method

  1. @override
Future<bool> containsKey<T extends Object>(
  1. String key
)

Checks if a key exists in the storage for the specified type.

Implementation

@override
Future<bool> containsKey<T extends Object>(String key) {
  return _getCache<T>().containsKey(key);
}