GoogleMapClassPrediction.fromJson constructor
Implementation
factory GoogleMapClassPrediction.fromJson(Map<String, dynamic> json) =>
GoogleMapClassPrediction(
predictions: json["predictions"] == null
? []
: List<PredictionGoogle>.from(
json["predictions"]!.map((x) => PredictionGoogle.fromJson(x))),
status: json["status"],
);