RouteResponse.fromJson constructor
Implementation
factory RouteResponse.fromJson(Map<String, dynamic> json) => RouteResponse(
type: json["type"],
bbox: List<double>.from(json["bbox"].map((x) => x?.toDouble())),
features: List<Feature>.from(json["features"].map((x) => Feature.fromJson(x))),
metadata: Metadata.fromJson(json["metadata"]),
);