hasInflightRequest method

bool hasInflightRequest(
  1. String key
)

Check if there's an inflight request for this key

Implementation

bool hasInflightRequest(String key) {
  return _inflightRequests.containsKey(key);
}