copyWith method
PedestrianInstructionCrossroadManeuver
copyWith({
- PedestrianInstructionCrossroadManeuverDirection? direction,
- int? turnAngle,
Implementation
PedestrianInstructionCrossroadManeuver copyWith({
PedestrianInstructionCrossroadManeuverDirection? direction,
int? turnAngle
}) {
return PedestrianInstructionCrossroadManeuver(
direction: direction ?? this.direction,
turnAngle: turnAngle ?? this.turnAngle
);
}