cut method

  1. @override
RouteNode<RouteValue>? cut(
  1. Object key
)
override

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);
}