shareWith method

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

Implementation

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