shareWith method

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

Implementation

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