DeviceLocation constructor

const DeviceLocation({
  1. double? latitude,
  2. double? longitude,
  3. double? accuracy,
  4. String? country,
  5. String? countryCode,
  6. String? administrativeArea,
  7. String? subAdministrativeArea,
  8. String? locality,
  9. String? subLocality,
  10. String? postalCode,
  11. String? timezone,
  12. String? language,
  13. String? locale,
  14. String? platformName,
  15. String? error,
})

Implementation

const DeviceLocation({
  this.latitude,
  this.longitude,
  this.accuracy,
  this.country,
  this.countryCode,
  this.administrativeArea,
  this.subAdministrativeArea,
  this.locality,
  this.subLocality,
  this.postalCode,
  this.timezone,
  this.language,
  this.locale,
  this.platformName,
  this.error,
});