OperationError.signingFailedWithStrongBox constructor

OperationError.signingFailedWithStrongBox(
  1. Map<String, dynamic> json
)

The device supports StrongBox and the key was created and stored in StrongBox during registration, but the created key cannot be used for signing.

Params:

  • json: contains the source for instance creation.

Implementation

factory OperationError.signingFailedWithStrongBox(
  Map<String, dynamic> json,
) {
  return OperationSigningFailedWithStrongBox.fromJson(json);
}