PlacesResponse.fromJson constructor
Implementation
PlacesResponse.fromJson(Map<String, dynamic> json) {
if (json['predictions'] != null) {
predictions = <Predictions>[];
json['predictions'].forEach((v) {
predictions!.add(new Predictions.fromJson(v));
});
}
status = json['status'];
}