createKeyPairUpdateNotificationTo method

Future<void> createKeyPairUpdateNotificationTo(
  1. String dataOwnerId,
  2. SpkiHexString key
)

Implementation

Future<void> createKeyPairUpdateNotificationTo(String dataOwnerId, SpkiHexString key) async {
	return await CardinalSdkPlatformInterface.instance.apis.cardinalMaintenanceTask.createKeyPairUpdateNotificationTo(
		_sdkId,
		dataOwnerId,
		key,
	);
}