getRequestsFor method
Gets all requests made to a specific endpoint.
Implementation
List<MockRequest> getRequestsFor(String endpointId) {
return requests.where((r) => r.endpointId == endpointId).toList();
}
Gets all requests made to a specific endpoint.
List<MockRequest> getRequestsFor(String endpointId) {
return requests.where((r) => r.endpointId == endpointId).toList();
}