shareWith method

Future<EncryptedForm> shareWith(
  1. String delegateId,
  2. EncryptedForm form, {
  3. FormShareOptions? options,
})

Implementation

Future<EncryptedForm> shareWith(String delegateId, EncryptedForm form, { FormShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.form.encrypted.shareWith(
		_sdkId,
		delegateId,
		form,
		options,
	);
}