shareWithMany method

Future<EncryptedContact> shareWithMany(
  1. EncryptedContact contact,
  2. Map<String, ContactShareOptions> delegates
)

Implementation

Future<EncryptedContact> shareWithMany(EncryptedContact contact, Map<String, ContactShareOptions> delegates) async {
	return await CardinalSdkPlatformInterface.instance.apis.contact.encrypted.shareWithMany(
		_sdkId,
		contact,
		delegates,
	);
}