PdfMetadata constructor

const PdfMetadata({
  1. String? title,
  2. String? author,
  3. String? subject,
  4. String? keywords,
  5. String? creator,
  6. String? producer,
  7. PdfDate? creationDate,
  8. PdfDate? modDate,
})

Creates an immutable PdfMetadata value object.

Implementation

const PdfMetadata({
  this.title,
  this.author,
  this.subject,
  this.keywords,
  this.creator,
  this.producer,
  this.creationDate,
  this.modDate,
});