RoutePushType enum Null safety
@author: YangLang @version: v1.0 @email: yanglang116@gmail.com
Constructors
- RoutePushType()
-
const
Values
- pushNamed → const RoutePushType
-
see Navigator.pushNamed(context, routeName)
const RoutePushType(0)
- pushReplacementNamed → const RoutePushType
-
see Navigator.pushReplacementNamed(context, routeName)
const RoutePushType(1)
- popAndPushNamed → const RoutePushType
-
see Navigator.popAndPushNamed(context, routeName)
const RoutePushType(2)
- pushAndRemoveUntil → const RoutePushType
-
see Navigator.pushAndRemoveUntil(context, newRoute, (route) => false)
const RoutePushType(3)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
RoutePushType> -
A constant List of the values in this enum, in order of their declaration.
[pushNamed, pushReplacementNamed, popAndPushNamed, pushAndRemoveUntil]