copyWith method

CarInstructionUTurn copyWith({
  1. String? exitName,
})

Implementation

CarInstructionUTurn copyWith({
  String? exitName
}) {
  return CarInstructionUTurn(
    exitName ?? this.exitName
  );
}