copyWith method
Implementation
AFRouteStateSegments copyWith({
List<AFRouteSegment>? active,
List<AFRouteSegment>? prior
}) {
return AFRouteStateSegments(
active: active ?? this.active,
prior: prior ?? this.prior
);
}
AFRouteStateSegments copyWith({
List<AFRouteSegment>? active,
List<AFRouteSegment>? prior
}) {
return AFRouteStateSegments(
active: active ?? this.active,
prior: prior ?? this.prior
);
}