Location constructor

Location({
  1. String? address,
  2. LatLng? latLng,
  3. double? altitude,
  4. double? bearing,
  5. String? country,
  6. String? province,
  7. String? city,
  8. String? cityCode,
  9. String? adCode,
  10. String? district,
  11. String? poiName,
  12. String? street,
  13. String? streetNumber,
  14. String? aoiName,
  15. double? accuracy,
  16. double? speed,
})

Implementation

Location({
  this.address,
  this.latLng,
  this.altitude,
  this.bearing,
  this.country,
  this.province,
  this.city,
  this.cityCode,
  this.adCode,
  this.district,
  this.poiName,
  this.street,
  this.streetNumber,
  this.aoiName,
  this.accuracy,
  this.speed,
});