DecryptPrivateKeyRequest constructor
Implementation
factory DecryptPrivateKeyRequest({
$core.String? privateKeyEncrypted,
$core.String? password,
}) {
final _result = create();
if (privateKeyEncrypted != null) {
_result.privateKeyEncrypted = privateKeyEncrypted;
}
if (password != null) {
_result.password = password;
}
return _result;
}