pop method

AFRouteStateSegments pop(
  1. dynamic childReturn
)

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

Implementation

AFRouteStateSegments pop(dynamic childReturn) {
  return popN(1, childReturn);
}