removeChildParam method

AFRouteState removeChildParam({
  1. required AFScreenID screenId,
  2. required AFID wid,
  3. required AFRouteLocation routeLocation,
})

Removes the route parameter for the specified child widget from the screen.

Implementation

AFRouteState removeChildParam({
  required AFScreenID screenId,
  required AFID wid,
  required AFRouteLocation routeLocation
}) {
  AFibD.logRouteAF?.d("addConnectedChild $screenId/$wid");
  return _reviseParamWithChildren(screenId, wid, routeLocation, null, (pwc) => pwc.reviseRemoveChild(wid));
}