ExtendedKeyUsageOptions constructor

ExtendedKeyUsageOptions({
  1. bool? clientAuth,
  2. bool? codeSigning,
  3. bool? emailProtection,
  4. bool? ocspSigning,
  5. bool? serverAuth,
  6. bool? timeStamping,
})

Implementation

ExtendedKeyUsageOptions({
  this.clientAuth,
  this.codeSigning,
  this.emailProtection,
  this.ocspSigning,
  this.serverAuth,
  this.timeStamping,
});