shareWith method

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

Implementation

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