NavigationNode
class NavigationNode(val routePart: String, var controller: BaseController?, val data: Any?, val parent: NavigationNode? = null, var children: NavigationNode? = null)
Constructors
Link copied to clipboard
constructor(routePart: String, controller: BaseController?, data: Any?, parent: NavigationNode? = null, children: NavigationNode? = null)