shareWith method

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

Implementation

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