containsKey<T extends Object> method
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);
}