UDocMetadata constructor

const UDocMetadata({
  1. String? title,
  2. String? author,
  3. String? subject,
  4. String? keywords,
  5. String? creator,
  6. String? producer,
  7. DateTime? creationDate,
  8. DateTime? modificationDate,
  9. String? language,
  10. String? publisher,
  11. String? identifier,
  12. String? series,
  13. double? seriesIndex,
  14. int pageCount = 0,
  15. String? version,
  16. bool tagged = false,
  17. bool linearized = false,
  18. bool encrypted = false,
  19. Map<String, String> custom = const <String, String>{},
})

Implementation

const UDocMetadata({
  this.title,
  this.author,
  this.subject,
  this.keywords,
  this.creator,
  this.producer,
  this.creationDate,
  this.modificationDate,
  this.language,
  this.publisher,
  this.identifier,
  this.series,
  this.seriesIndex,
  this.pageCount = 0,
  this.version,
  this.tagged = false,
  this.linearized = false,
  this.encrypted = false,
  this.custom = const <String, String>{},
});