path property

String path
final

The URL path of this route.

The path also support path parameters. For a path: /page/:pageId, it matches all URLs start with /page/..., e.g. /page/123, /page/456 etc. The parameter values are stored in the RouteState that is passed to builder.

Implementation

final String path;