LocationPayload constructor

const LocationPayload({
  1. double? latitude,
  2. double? longitude,
  3. double? accuracy,
  4. double? altitude,
  5. double? speed,
  6. double? bearing,
  7. double? course,
  8. String? provider,
  9. String? timestamp,
  10. bool? isMocked,
  11. String? address,
  12. String? city,
  13. String? country,
  14. String? countryCode,
  15. String? postalCode,
  16. String? administrativeArea,
  17. String? subAdministrativeArea,
  18. String? locality,
  19. String? subLocality,
})

Implementation

const LocationPayload({
  this.latitude,
  this.longitude,
  this.accuracy,
  this.altitude,
  this.speed,
  this.bearing,
  this.course,
  this.provider,
  this.timestamp,
  this.isMocked,
  this.address,
  this.city,
  this.country,
  this.countryCode,
  this.postalCode,
  this.administrativeArea,
  this.subAdministrativeArea,
  this.locality,
  this.subLocality,
});