arckipelgooglePlaceAutoComplete method

Future<List<AutocompletePrediction>> arckipelgooglePlaceAutoComplete(
  1. String keyword, {
  2. String? countryCode,
  3. List<String>? types,
})

Implementation

Future<List<AutocompletePrediction>> arckipelgooglePlaceAutoComplete(
    String keyword,
    {String? countryCode,
    List<String>? types}) async {
  NetworkResponse response = await _api.googlePlaceAutoComplete(keyword,
      countryCode: countryCode, types: types);
  return response.data ?? [];
}