getPlaceDetails method

Future<Place> getPlaceDetails(
  1. String? placeId
)

Implementation

Future<Place> getPlaceDetails(String? placeId) async {
  return await _googleLocationSearchService.getPlaceDetailFromId(placeId);
}