copyWith method
Implementation
InstructionRouteEntry copyWith({
RoutePoint? point,
RouteInstruction? value
}) {
return InstructionRouteEntry(
point: point ?? this.point,
value: value ?? this.value
);
}
InstructionRouteEntry copyWith({
RoutePoint? point,
RouteInstruction? value
}) {
return InstructionRouteEntry(
point: point ?? this.point,
value: value ?? this.value
);
}