GpsPathInfo.fromJson constructor
Implementation
factory GpsPathInfo.fromJson(Map<String, dynamic> json) => GpsPathInfo(
time: json["time"] ?? -1,
locationList: List<Location>.from(
(json["locationList"] ?? []).map((x) => (Location.fromJson(x))),
),
interval: json["interval"] ?? 2,
);