updateWithValue method
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,
}) {
return createNode(next: next, value: value);
}