RouteQuery class abstract

Base class for creating queries to perform page transitions.

Enter the path name of the page in path and make route return Route for the page transition.

You can get the object corresponding to the query from value.

ページ遷移を行うためのクエリーを作成するためのベースクラス。

pathにページのパス名を入力し、routeにページ遷移を行うためのRouteを返すようにします。

valueからクエリーに対応したオブジェクトを取得することができます。

Available Extensions
Annotations

Constructors

RouteQuery()
Base class for creating queries to perform page transitions.
const

Properties

hashCode int
The hash code for this object.
no setteroverride
name String
Page Name. The name by which the page is identified is defined.
no setter
nested bool
Returns true for nested pages (i.e., pages with no path information).
no setter
path String
The path name of the page.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
transition TransitionQuery?
Specifies the default transition tied to the page. Transitions specified by AppRouter.push or other methods will take precedence.
no setter

Methods

key<E>() → E?
A key to identify the query.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
redirect() List<RedirectQuery>
The reroute settings associated with this page are done by giving a list of classes that extend RedirectQuery.
route<E>([TransitionQuery? query]) AppPageRoute<E>
Make AppPageRoute return to perform page transitions.
toString() String
A string representation of this object.
override
widget<W extends Widget>() → W?
Returns a Widget created from the query.

Operators

operator ==(Object other) bool
The equality operator.
override