photoUrl function

String photoUrl(
  1. dynamic reference
)

Implementation

String photoUrl(reference) {
  final url =
      "https://maps.googleapis.com/maps/api/place/photo?maxwidth=200&maxheight=200&photoreference=$reference&key=${ThirdPartyCreds.googlePlaces.credentials}";
  return url;
}