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