GPSLocationData.fromJson constructor
GPSLocationData.fromJson(
- Map<String, dynamic> json
)
Implementation
factory GPSLocationData.fromJson(Map<String, dynamic> json) => GPSLocationData(
latitude: json['latitude'],
longitude: json['longitude'],
countryName: json['countryName'],
countryCode: json['countryCode'],
adminArea: json['adminArea'],
subAdminArea: json['subAdminArea'],
featureName: json['featureName'],
postalCode: json['postalCode'],
locality: json['locality'],
subLocality: json['subLocality'],
address: json['address'],
);