DecryptOAEPRequest constructor
Implementation
factory DecryptOAEPRequest({
$core.String? ciphertext,
$core.String? label,
Hash? hash,
$core.String? privateKey,
}) {
final _result = create();
if (ciphertext != null) {
_result.ciphertext = ciphertext;
}
if (label != null) {
_result.label = label;
}
if (hash != null) {
_result.hash = hash;
}
if (privateKey != null) {
_result.privateKey = privateKey;
}
return _result;
}