PlacesSearchResponse constructor

PlacesSearchResponse({
  1. ResponseStatus? status,
  2. String? errorMessage,
  3. List<PlacesSearchResult>? results,
  4. List<String>? htmlAttributions,
  5. String? nextPageToken,
})

Implementation

PlacesSearchResponse({
  super.status,
  super.errorMessage,
  this.results,
  this.htmlAttributions,
  this.nextPageToken,
});