getCallsFor static method

List<ApiCallInfo> getCallsFor(
  1. String endpoint
)

Get calls for a specific endpoint.

Implementation

static List<ApiCallInfo> getCallsFor(String endpoint) {
  return getCalls().where((c) => c.endpoint.contains(endpoint)).toList();
}