PlaceResponse.fromJson constructor

PlaceResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

PlaceResponse.fromJson(Map<String, dynamic> json) {
  description = json['description'];
  id = json['id'];
  place_id = json['place_id'];
}