fetchPlacePhoto method

Future<FetchPlacePhotoResponse> fetchPlacePhoto(
  1. PhotoMetadata photoMetadata, {
  2. int? maxWidth,
  3. int? maxHeight,
})

Fetches a photo of a place.

Before fetching a place photo the place it self must be fetched, together with the PlaceField.PhotoMetadatas field

For more info: https://developers.google.com/maps/documentation/places/android-sdk/photos

Implementation

Future<FetchPlacePhotoResponse> fetchPlacePhoto(
  PhotoMetadata photoMetadata, {
  int? maxWidth,
  int? maxHeight,
}) {
  throw UnimplementedError('fetchPlacePhoto() has not been implemented.');
}