getInflightRequest<T> method
Get the inflight request for this key if it exists
Implementation
Future<T>? getInflightRequest<T>(String key) {
final future = _inflightRequests[key];
if (future is Future<T>) {
return future;
}
return null;
}