getAddressPredictions top-level constant
String
const getAddressPredictions
Query to get address predictions from query
Implementation
const String getAddressPredictions = r'''
query($query: String!, $countryCode: AutocompleteSupportedCountry!, $locale: String!, $location: LocationInput) {
predictions(query: $query, countryCode: $countryCode, locale: $locale, location: $location) {
addressId
description
matchedSubstrings {
length
offset
}
}
}
''';