Place constructor

Place({
  1. String? address,
  2. int? code,
  3. String? country,
  4. String? city,
  5. String? province,
  6. String? suburb,
  7. double? latitude,
  8. double? longitude,
  9. String? streetAddress,
  10. String? streetNumber,
})

Implementation

Place({this.address,this.code, this.country,this.city,this.province,this.suburb, this.latitude, this.longitude, this.streetAddress, this.streetNumber});