PdfRevocationEvidence constructor

const PdfRevocationEvidence({
  1. required int signatureIndex,
  2. required String status,
  3. required String source,
  4. DateTime? checkedAt,
  5. String? ocspResponder,
  6. String? crlIssuer,
  7. DateTime? nextUpdate,
  8. String? softFailReason,
})

Implementation

const PdfRevocationEvidence({
  required this.signatureIndex,
  required this.status,
  required this.source,
  this.checkedAt,
  this.ocspResponder,
  this.crlIssuer,
  this.nextUpdate,
  this.softFailReason,
});