tail abstract method
@brief Returns the remaining segment of the route.
Returns the portion of the route starting from the specified advance distance to the end of the route. If advance is less than or equal to zero, the entire route is returned.
@param advance Distance along the route (in meters). @return The remaining segment of the route (from advance to end), or nil if the segment is empty.
Dart code snippet: @snippet route_manager_example.dart dart_RoutePath_tail
Implementation
RoutePath tail(double advance);