PathRoute

class PathRoute(val paths: List<String>, val meta: Meta? = null, val childRoutes: List<Route>? = null, view: @Composable IComponent.() -> Unit? = null, action: suspend () -> Unit? = null, context: RoutingContextImpl) : Route(source)

Represents a route that matches a specific path or set of paths.

Constructors

Link copied to clipboard
constructor(paths: List<String>, meta: Meta? = null, childRoutes: List<Route>? = null, view: @Composable IComponent.() -> Unit? = null, action: suspend () -> Unit? = null, context: RoutingContextImpl)

Properties

Link copied to clipboard
open override val childRoutes: List<Route>?
Link copied to clipboard
open override val meta: Meta?
Link copied to clipboard

Functions

Link copied to clipboard
open override fun toString(): String