PdfMetadata constructor

PdfMetadata({
  1. String? title,
  2. String? author,
  3. String? subject,
  4. String? keywords,
  5. String? creator,
  6. String? producer,
  7. String? creationDate,
  8. String? modDate,
  9. String? format,
  10. String? encryption,
  11. bool trapped = false,
})

Implementation

PdfMetadata({
  this.title,
  this.author,
  this.subject,
  this.keywords,
  this.creator,
  this.producer,
  this.creationDate,
  this.modDate,
  this.format,
  this.encryption,
  this.trapped = false,
});