matchAll method

Future<Iterable<Response>> matchAll([
  1. Request? request,
  2. CacheQueryOptions? options
])

Implementation

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