getCallsFor static method
Get calls for a specific endpoint.
Implementation
static List<ApiCallInfo> getCallsFor(String endpoint) {
return getCalls().where((c) => c.endpoint.contains(endpoint)).toList();
}
Get calls for a specific endpoint.
static List<ApiCallInfo> getCallsFor(String endpoint) {
return getCalls().where((c) => c.endpoint.contains(endpoint)).toList();
}