fetchPlace method
Fetches the details of a place.
Only the requested fields will be returned. If none specified,
all fields will be returned.
Note that different fields can incur different billing.
For more info about billing: https://developers.google.cn/maps/documentation/places/web-service/usage-and-billing
Implementation
@override
Future<FetchPlaceResponse> fetchPlace(
String placeId, {
required List<PlaceField> fields,
bool? newSessionToken,
String? regionCode,
}) async {
final respPlace = await _getDetails(placeId, fields);
return FetchPlaceResponse(respPlace);
}