EncryptPrivateKeyRequest constructor

EncryptPrivateKeyRequest({
  1. String? privateKey,
  2. String? password,
  3. PEMCipher? cipher,
})

Implementation

factory EncryptPrivateKeyRequest({
  $core.String? privateKey,
  $core.String? password,
  PEMCipher? cipher,
}) {
  final _result = create();
  if (privateKey != null) {
    _result.privateKey = privateKey;
  }
  if (password != null) {
    _result.password = password;
  }
  if (cipher != null) {
    _result.cipher = cipher;
  }
  return _result;
}