search method
Implementation
Future<List<Suggestion>> search(String query,
{bool includeFullSuggestionDetails = false,
bool postalCodeLookup = false}) async {
return await apiClient.fetchSuggestions(query,
includeFullSuggestionDetails: includeFullSuggestionDetails,
postalCodeLookup: postalCodeLookup);
}