PostRoutingTask
@MainActor
public protocol PostRoutingTaskThe task to be executed after navigation process happened.
- 
                  
                  UIViewControllertype associated with thisPostRoutingTaskDeclarationSwift associatedtype ViewController : UIViewController
- 
                  
                  Contexttype associated with thisPostRoutingTaskDeclarationSwift associatedtype Context
- 
                  
                  Method to be executed by the Routerafter all the view controllers have been built into the stack.DeclarationSwift @MainActor func perform(on viewController: ViewController, with context: Context, routingStack: [UIViewController])
- 
                  perform(on:Extension methodroutingStack: ) Method to be executed by the Routerafter all the view controllers have been built into the stack.DeclarationSwift @MainActor func perform(on viewController: ViewController, routingStack: [UIViewController])ParametersviewControllerThe UIViewControllerinstance that this post-task has been attached toroutingStackAn array of all the view controllers that been built by the Routerto reach the final destination
- 
                  perform(on:Extension methodroutingStack: ) Method to be executed by the Routerafter all the view controllers have been built into the stack.DeclarationSwift @MainActor func perform(on viewController: ViewController, routingStack: [UIViewController])ParametersviewControllerThe UIViewControllerinstance that this post-task has been attached toroutingStackAn array of all the view controllers that been built by the Routerto reach the final destination
