apiWasCalled function

Matcher apiWasCalled(
  1. String endpoint, {
  2. String? method,
  3. int? times,
})

Custom matcher for API calls.

Implementation

Matcher apiWasCalled(String endpoint, {String? method, int? times}) =>
    _ApiWasCalled(endpoint, method, times);