Location constructor

Location({
  1. double? latitude,
  2. double? longitude,
  3. double? accuracy,
  4. String? address,
  5. String? city,
  6. String? country,
  7. String? district,
  8. String? street,
  9. String? province,
})

Implementation

Location({
  this.latitude,
  this.longitude,
  this.accuracy,
  this.address,
  this.city,
  this.country,
  this.district,
  this.street,
  this.province,
});