copyWith method

BuildingId copyWith({
  1. int? value,
})

Implementation

BuildingId copyWith({
  int? value
}) {
  return BuildingId(
    value ?? this.value
  );
}