copyWith method
ObstacleInfoRouteLongEntry
copyWith({
- RoutePoint? point,
- RouteDistance? length,
- ObstacleInfo? value,
Implementation
ObstacleInfoRouteLongEntry copyWith({
RoutePoint? point,
RouteDistance? length,
ObstacleInfo? value
}) {
return ObstacleInfoRouteLongEntry(
point: point ?? this.point,
length: length ?? this.length,
value: value ?? this.value
);
}