EncryptPrivateKeyRequestObjectBuilder constructor

EncryptPrivateKeyRequestObjectBuilder({
  1. String? privateKey,
  2. String? password,
  3. Pemcipher? cipher,
})

Implementation

EncryptPrivateKeyRequestObjectBuilder({
  String? privateKey,
  String? password,
  Pemcipher? cipher,
})  : _privateKey = privateKey,
      _password = password,
      _cipher = cipher;