shareWith method

Future<DecryptedDocument> shareWith(
  1. String delegateId,
  2. DecryptedDocument document, {
  3. DocumentShareOptions? options,
})

Implementation

Future<DecryptedDocument> shareWith(String delegateId, DecryptedDocument document, { DocumentShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.document.shareWith(
		_sdkId,
		delegateId,
		document,
		options,
	);
}