Hi, I'm a newbie so pardon me if this question is silly.
I'm using the nuget package Xamarin.Google.ios.Places and I'm trying to get Place Detail by using FetchPlace like so:
`public void DidAutocomplete(AutocompletePrediction[] predictions)
{
placeid = predictions.FirstOrDefault().PlaceId;
var fields = new List();
But It's giving me an error in the fields parameters because it's expecting a Google.Places.PlaceField instead of a System.Collections.Generic.List, like described in the metadata
Hi, I'm a newbie so pardon me if this question is silly. I'm using the nuget package Xamarin.Google.ios.Places and I'm trying to get Place Detail by using FetchPlace like so: `public void DidAutocomplete(AutocompletePrediction[] predictions) { placeid = predictions.FirstOrDefault().PlaceId; var fields = new List();
But It's giving me an error in the fields parameters because it's expecting a Google.Places.PlaceField instead of a System.Collections.Generic.List, like described in the metadata
It's there another way of doing this? if so, can someone direct me to the right direction?