removeInFlight<T extends Object> method
Removes an in-flight request
key - The key of the request to remove
Implementation
void removeInFlight<T extends Object>(String key) {
_inFlightSets[T]?.remove(key);
}
Removes an in-flight request
key - The key of the request to remove
void removeInFlight<T extends Object>(String key) {
_inFlightSets[T]?.remove(key);
}