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