copyWith method

Implementation

BicycleInstructionCrossroad copyWith({
  BicycleInstructionCrossroadLandmark? landmark,
  List<BicycleInstructionCrossroadManeuver>? maneuvers
}) {
  return BicycleInstructionCrossroad(
    landmark: landmark ?? this.landmark,
    maneuvers: maneuvers ?? this.maneuvers
  );
}