removeChildParam method
AFRouteState
removeChildParam({
- required AFScreenID screenId,
- required AFID wid,
- 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));
}