Certificate constructor

Certificate({
  1. String? issuer,
  2. String? notAfterTime,
  3. String? notBeforeTime,
  4. bool? parsed,
  5. String? rawDer,
  6. String? serialNumber,
  7. String? sha256Fingerprint,
  8. String? subject,
  9. List<String>? subjectAlternativeDnsNames,
})

Implementation

Certificate({
  this.issuer,
  this.notAfterTime,
  this.notBeforeTime,
  this.parsed,
  this.rawDer,
  this.serialNumber,
  this.sha256Fingerprint,
  this.subject,
  this.subjectAlternativeDnsNames,
});