copyActive method

List<AFRouteSegment> copyActive()

Utility to create a copy of the current route, so that it can be manipulated.

Implementation

List<AFRouteSegment> copyActive() {
  return List<AFRouteSegment>.from(this.active);
}