GPSLocationData constructor

GPSLocationData({
  1. String? latitude,
  2. String? longitude,
  3. String? countryName,
  4. String? countryCode,
  5. String? adminArea,
  6. String? subAdminArea,
  7. String? featureName,
  8. String? postalCode,
  9. String? locality,
  10. String? subLocality,
  11. String? address,
})

Implementation

GPSLocationData({
  this.latitude,
  this.longitude,
  this.countryName,
  this.countryCode,
  this.adminArea,
  this.subAdminArea,
  this.featureName,
  this.postalCode,
  this.locality,
  this.subLocality,
  this.address,
});