PdfaRdf constructor

PdfaRdf({
  1. String? title,
  2. String? author,
  3. String? creator,
  4. String? subject,
  5. String? keywords,
  6. String? producer,
  7. DateTime? creationDate,
  8. String invoiceRdf = '',
})

Implementation

PdfaRdf({
  this.title,
  this.author,
  this.creator,
  this.subject,
  this.keywords,
  this.producer,
  DateTime? creationDate,
  this.invoiceRdf = '',
}) {
  this.creationDate = creationDate ?? DateTime.now();
}