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