VerifyResponse.fromJson constructor
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(),
);
}