match abstract method

dynamic match({
  1. required String key,
  2. List<String> subKeys,
})

Returns cache value linked to key and subKeys.

If there are multiple caches associated with a key in the storage and only key is specified as an argument, the value of the first matching cache will be returned.

If there is no cache associated with the key and subKeys, null will be returned.

Implementation

dynamic match({
  required String key,
  List<String> subKeys,
});