copyWith method
Implementation
FloatRouteLongEntry copyWith({
RoutePoint? point,
RouteDistance? length,
double? value
}) {
return FloatRouteLongEntry(
point: point ?? this.point,
length: length ?? this.length,
value: value ?? this.value
);
}