KeyGenerationRequestResult.deny constructor

KeyGenerationRequestResult.deny()

The SDK must not generate a new key for the data owner. The SDK initialisation should fail with a predefined error.

Implementation

factory KeyGenerationRequestResult.deny() {
  return const KeyGenerationRequestResult._(
      ktType: "com.icure.cardinal.sdk.dart.crypto.DartKeyGenerationRequestResult.Deny",
      key: null
  );
}