GPSLocationData.fromiOSJson constructor
Implementation
factory GPSLocationData.fromiOSJson(Map<String, dynamic> json) => GPSLocationData(
latitude: json['latitude'].toString(),
longitude: json['longitude'].toString(),
altitude: json['altitude'].toString(),
);