KeyOptionsObjectBuilder constructor

KeyOptionsObjectBuilder({
  1. Algorithm? algorithm,
  2. Curve? curve,
  3. Hash? hash,
  4. Cipher? cipher,
  5. Compression? compression,
  6. int? compressionLevel,
  7. int? rsaBits,
})

Implementation

KeyOptionsObjectBuilder({
  Algorithm? algorithm,
  Curve? curve,
  Hash? hash,
  Cipher? cipher,
  Compression? compression,
  int? compressionLevel,
  int? rsaBits,
})  : _algorithm = algorithm,
      _curve = curve,
      _hash = hash,
      _cipher = cipher,
      _compression = compression,
      _compressionLevel = compressionLevel,
      _rsaBits = rsaBits;