PlaceIdSearchCallback typedef

PlaceIdSearchCallback = void Function(SearchError? searchError, Place? place)

The method will be called on the main thread when a search by id call has been completed.

  • searchError The search error.

  • place The place.

Implementation

typedef PlaceIdSearchCallback = void Function(SearchError? searchError, Place? place);