GPSLocationData.fromiOSJson constructor

GPSLocationData.fromiOSJson(
  1. Map<String, dynamic> json
)

Implementation

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