has abstract method

bool has({
  1. required String key,
  2. List<String> subKeys,
})

Returns true if cache storage has value linked to key and subKeys, otherwise false.

Implementation

bool has({
  required String key,
  List<String> subKeys,
});