WayPoint.fromMap constructor

WayPoint.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory WayPoint.fromMap(Map<String, dynamic> json) => WayPoint(
      latitude: json["Latitude"].toDouble(),
      longitude: json["Longitude"].toDouble(),
    );