getPlace method

Future<Place> getPlace(
  1. String placeId
)

Implementation

Future<Place> getPlace(String placeId) async {
	return await CardinalSdkPlatformInterface.instance.apis.place.getPlace(
		_sdkId,
		placeId,
	);
}