SearchListingData constructor

SearchListingData(
  1. {num? id,
  2. String? name,
  3. String? address,
  4. String? city,
  5. String? state,
  6. String? country,
  7. String? latitude,
  8. String? longitude,
  9. String? postalCode,
  10. String? description,
  11. String? businessImage,
  12. String? status,
  13. num? isOpen,
  14. String? distance}
)

Implementation

SearchListingData({
  this.id,
  this.name,
  this.address,
  this.city,
  this.state,
  this.country,
  this.latitude,
  this.longitude,
  this.postalCode,
  this.description,
  this.businessImage,
  this.status,
  this.isOpen,
  this.distance,
});