copyWith method
PedestrianInstructionIndoorFloorChange
copyWith({
- PedestrianInstructionIndoorFloorChangeType? type,
- LevelId? beginId,
- LevelId? endId,
Implementation
PedestrianInstructionIndoorFloorChange copyWith({
PedestrianInstructionIndoorFloorChangeType? type,
LevelId? beginId,
LevelId? endId
}) {
return PedestrianInstructionIndoorFloorChange(
type: type ?? this.type,
beginId: beginId ?? this.beginId,
endId: endId ?? this.endId
);
}