copyWith method

PedestrianInstructionIndoorEnter copyWith({
  1. LevelId? levelId,
})

Implementation

PedestrianInstructionIndoorEnter copyWith({
  LevelId? levelId
}) {
  return PedestrianInstructionIndoorEnter(
    levelId ?? this.levelId
  );
}