invalidateReadyCheck method
Unregisters a ready check at the given path. (should this also complete any outstanding item?)
Implementation
@override
void invalidateReadyCheck(JsonPath path) {
final check = readyChecks[path];
if (check?.isStarted == true && check?.isNotComplete == true) {
check!.complete();
}
readyChecks.remove(path);
}