cut method
Returns a copy of the list from the node it's called on, up to the node
with the provided key
Implementation
@override
RouteNode<RouteValue>? cut(Object key) {
return next.cut(key);
}
Returns a copy of the list from the node it's called on, up to the node
with the provided key
@override
RouteNode<RouteValue>? cut(Object key) {
return next.cut(key);
}