OptionsObjectBuilder constructor

OptionsObjectBuilder({
  1. String? name,
  2. String? comment,
  3. String? email,
  4. String? passphrase,
  5. KeyOptionsObjectBuilder? keyOptions,
})

Implementation

OptionsObjectBuilder({
  String? name,
  String? comment,
  String? email,
  String? passphrase,
  KeyOptionsObjectBuilder? keyOptions,
})  : _name = name,
      _comment = comment,
      _email = email,
      _passphrase = passphrase,
      _keyOptions = keyOptions;