fetchPlacePhoto method

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

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

@override
Future<inter.FetchPlacePhotoResponse> fetchPlacePhoto(
  inter.PhotoMetadata photoMetadata, {
  int? maxWidth,
  int? maxHeight,
}) async {
  throw UnimplementedError();
}