searchByText method
Future<SearchByTextResponse>
searchByText(
- String textQuery, {
- required List<
PlaceField> fields, - String? includedType,
- int? maxResultCount,
- LatLngBounds? locationBias,
- LatLngBounds? locationRestriction,
- double? minRating,
- bool? openNow,
- List<
int> ? priceLevels, - TextSearchRankPreference? rankPreference,
- String? regionCode,
- bool? strictTypeFiltering,
inherited
Fetches places based on an ambiguous text query.
Only the requested fields
will be returned. If none specified,
all fields will be returned.
Note that different fields can incur different billing.
For more info about billing: https://developers.google.com/maps/documentation/places/android-sdk/usage-and-billing#pricing-new
For more info on text search: https://developers.google.com/maps/documentation/places/android-sdk/text-search
Implementation
Future<SearchByTextResponse> searchByText(
String textQuery, {
required List<PlaceField> fields,
String? includedType,
int? maxResultCount,
LatLngBounds? locationBias,
LatLngBounds? locationRestriction,
double? minRating,
bool? openNow,
List<int>? priceLevels,
TextSearchRankPreference? rankPreference,
String? regionCode,
bool? strictTypeFiltering,
}) {
throw UnimplementedError('fetchPlacePhoto() has not been implemented.');
}