shareWith method

Future<Contact> shareWith(
  1. String delegateId,
  2. Contact contact, {
  3. ContactShareOptions? options,
})

Implementation

Future<Contact> shareWith(String delegateId, Contact contact, { ContactShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.contact.tryAndRecover.shareWith(
		_sdkId,
		delegateId,
		contact,
		options,
	);
}