DecryptPrivateKeyRequest constructor

DecryptPrivateKeyRequest({
  1. String? privateKeyEncrypted,
  2. String? password,
})

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;
}