VerifyResponse.fromJson constructor

VerifyResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory VerifyResponse.fromJson(Map<String, dynamic> json) {
  return VerifyResponse(
    keyId: json['KeyId'] as String?,
    signatureValid: json['SignatureValid'] as bool?,
    signingAlgorithm:
        (json['SigningAlgorithm'] as String?)?.toSigningAlgorithmSpec(),
  );
}