PlacesSearchResponse constructor

PlacesSearchResponse({
  1. required String status,
  2. String? errorMessage,
  3. List<PlacesSearchResult> results = const [],
  4. List<String> htmlAttributions = const [],
  5. String? nextPageToken,
})

Implementation

PlacesSearchResponse({
  required String status,
  String? errorMessage,
  this.results = const [],
  this.htmlAttributions = const [],
  this.nextPageToken,
}) : super(status: status, errorMessage: errorMessage);