pop method

AFRouteState pop(
  1. dynamic childReturn
)

Remove the leaf element from the route, returning back to the parent screen.

Implementation

AFRouteState pop(dynamic childReturn) {
  AFibD.logRouteAF?.d("pop returned $childReturn");
  return popN(1, childReturn);
}