ASN1Subject constructor

ASN1Subject({
  1. String? commonName,
  2. String? country,
  3. String? distinguishedNameQualifier,
  4. String? generationQualifier,
  5. String? givenName,
  6. String? initials,
  7. String? locality,
  8. String? organization,
  9. String? organizationalUnit,
  10. String? pseudonym,
  11. String? serialNumber,
  12. String? state,
  13. String? surname,
  14. String? title,
})

Implementation

ASN1Subject({
  this.commonName,
  this.country,
  this.distinguishedNameQualifier,
  this.generationQualifier,
  this.givenName,
  this.initials,
  this.locality,
  this.organization,
  this.organizationalUnit,
  this.pseudonym,
  this.serialNumber,
  this.state,
  this.surname,
  this.title,
});