SubjectDescription constructor

SubjectDescription({
  1. String? commonName,
  2. String? hexSerialNumber,
  3. String? lifetime,
  4. String? notAfterTime,
  5. String? notBeforeTime,
  6. Subject? subject,
  7. SubjectAltNames? subjectAltName,
})

Implementation

SubjectDescription({
  this.commonName,
  this.hexSerialNumber,
  this.lifetime,
  this.notAfterTime,
  this.notBeforeTime,
  this.subject,
  this.subjectAltName,
});