LocationData constructor

LocationData({
  1. required double latitude,
  2. required double longitude,
  3. String? address,
  4. String? city,
  5. String? state,
  6. String? country,
  7. String? postalCode,
  8. String? formattedAddress,
  9. String? placeId,
  10. List<String>? types,
  11. double? accuracy,
  12. Map<String, dynamic>? additionalData,
  13. String? timezone,
  14. LocationBounds? bounds,
  15. List<LocationData>? nearbyPlaces,
})

Implementation

LocationData({
  required this.latitude,
  required this.longitude,
  this.address,
  this.city,
  this.state,
  this.country,
  this.postalCode,
  this.formattedAddress,
  this.placeId,
  this.types,
  this.accuracy,
  this.additionalData,
  this.timezone,
  this.bounds,
  this.nearbyPlaces,
});