BuildingModel constructor

BuildingModel({
  1. String? name,
  2. String? city,
  3. String? country,
  4. double? heightInMetres,
  5. double? heightInFt,
  6. int? numberOfFloors,
  7. int? numberOfBelowGroundFloors,
  8. int? establishedIn,
})

Implementation

BuildingModel({
  this.name,
  this.city,
  this.country,
  this.heightInMetres,
  this.heightInFt,
  this.numberOfFloors,
  this.numberOfBelowGroundFloors,
  this.establishedIn,
});