IntRoute

class IntRoute(val meta: Meta? = null, val childRoutes: List<Route>? = null, view: @Composable IComponent.(Int) -> Unit? = null, action: suspend (Int) -> Unit? = null, context: IntRoutingContextImpl) : Route(source)

Represents a route that matches a specific numeric segment.

Constructors

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

Properties

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

Functions

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