LocationData constructor
LocationData({
- required double latitude,
- required double longitude,
- String? address,
- String? city,
- String? state,
- String? country,
- String? postalCode,
- String? formattedAddress,
- String? placeId,
- List<
String> ? types, - double? accuracy,
- Map<
String, dynamic> ? additionalData, - String? timezone,
- LocationBounds? bounds,
- 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,
});