findGlobalParam method

AFRouteSegment? findGlobalParam(
  1. AFID screen
)

Finds a drawer param for the drawer with the specified screen id.

This may return null, in which case you should use the drawer's createRouteParam method to create an initial value.

Implementation

AFRouteSegment? findGlobalParam(AFID screen) {
  return globalPool[screen];
}