updateWithValue method
RouteNode<RouteValue>
updateWithValue({
- RouteNode<
RouteValue> ? next, - required T value,
- Completer? popCompleter,
Prioritizes value
over next
.
next
is what the node is currently pointing towards.value
is the value the returned node is expected to contain.
Implementation
RouteNode updateWithValue({
RouteNode? next,
required T value,
Completer? popCompleter,
}) {
return createNode(
next: next,
value: value,
popCompleter: popCompleter,
);
}