decryptService method

Future<DecryptedService> decryptService(
  1. EncryptedService service
)

Implementation

Future<DecryptedService> decryptService(EncryptedService service) async {
	return await CardinalSdkPlatformInterface.instance.apis.contact.decryptService(
		_sdkId,
		service,
	);
}