shareWith method

Future<DecryptedClassification> shareWith(
  1. String delegateId,
  2. DecryptedClassification classification, {
  3. ClassificationShareOptions? options,
})

Implementation

Future<DecryptedClassification> shareWith(String delegateId, DecryptedClassification classification, { ClassificationShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.classification.shareWith(
		_sdkId,
		delegateId,
		classification,
		options,
	);
}