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