findRouteParamInGlobalPool method

AFRouteSegment? findRouteParamInGlobalPool({
  1. required AFScreenID screenId,
  2. required AFWidgetID wid,
})

Implementation

AFRouteSegment? findRouteParamInGlobalPool({
  required AFScreenID screenId,
  required AFWidgetID wid,
}) {
  final parentSeg = globalPool[screenId];
  return _findChildIfApplicable(parentSeg: parentSeg, wid: wid);
}