exist method

  1. @override
bool exist(
  1. K k
)
override

Returns true when the key is existing otherwise false

Implementation

@override
bool exist(K k) {
  return _cache.containsKey(k);
}