copyWith method
Implementation
FloorInfo copyWith({
LevelId? levelId,
BuildingId? buildingId
}) {
return FloorInfo(
levelId: levelId ?? this.levelId,
buildingId: buildingId ?? this.buildingId
);
}
FloorInfo copyWith({
LevelId? levelId,
BuildingId? buildingId
}) {
return FloorInfo(
levelId: levelId ?? this.levelId,
buildingId: buildingId ?? this.buildingId
);
}