shareWith method

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

Implementation

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