modifyPlace method

Future<Place> modifyPlace(
  1. Place place
)

Implementation

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