shareWith method

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

Implementation

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