SubjectDescription constructor

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

Implementation

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