GeneralName constructor

GeneralName({
  1. ASN1Subject? directoryName,
  2. String? dnsName,
  3. EdiPartyName? ediPartyName,
  4. String? ipAddress,
  5. OtherName? otherName,
  6. String? registeredId,
  7. String? rfc822Name,
  8. String? uniformResourceIdentifier,
})

Implementation

GeneralName({
  this.directoryName,
  this.dnsName,
  this.ediPartyName,
  this.ipAddress,
  this.otherName,
  this.registeredId,
  this.rfc822Name,
  this.uniformResourceIdentifier,
});