matchAll method
Implementation
Future<Iterable<Response>> matchAll(
[Request? request, CacheQueryOptions? options]) async {
final matches = await _delegate.matchAll(
request ?? interop.jsUndefined,
options?.delegate,
);
return matches.map((obj, _, __) => responseFromJsObject(obj));
}