callsFor method

List<APICallRecord> callsFor(
  1. String apiName
)

Implementation

List<APICallRecord> callsFor(String apiName) =>
    calls.where((c) => c.name == apiName).toList();