Location constructor

Location({
  1. LatLng? latLng,
  2. double? accuracy,
  3. String? address,
  4. String? city,
  5. String? country,
  6. String? district,
  7. String? street,
  8. String? province,
  9. String? cityCode,
  10. String? adCode,
})

Implementation

Location({
  this.latLng,
  this.accuracy,
  this.address,
  this.city,
  this.country,
  this.district,
  this.street,
  this.province,
  this.cityCode,
  this.adCode,
});