clearContextState static method
清除特定 Context 的所有状态 (回调和异步解析器)
Implementation
static void clearContextState(int contextAddress) {
_callbacks.removeWhere((key, _) => key.startsWith("${contextAddress}_"));
pendingResolvers.remove(contextAddress);
pendingRejections.remove(contextAddress);
}