PdfTimestampValidationOptions constructor

const PdfTimestampValidationOptions({
  1. List<String>? trustedRootsPem,
  2. TrustedRootsProvider? trustedRootsProvider,
  3. List<TrustedRootsProvider>? trustedRootsProviders,
  4. PdfHttpFetcherBase? certificateFetcher,
  5. bool requireTrustedChain = true,
  6. bool throwOnFailure = true,
})

Creates TSA validation options.

Implementation

const PdfTimestampValidationOptions({
  this.trustedRootsPem,
  this.trustedRootsProvider,
  this.trustedRootsProviders,
  this.certificateFetcher,
  this.requireTrustedChain = true,
  this.throwOnFailure = true,
});