PdfAttributes constructor

const PdfAttributes(
  1. {required String creator,
  2. required String author,
  3. required String title,
  4. required String subject,
  5. required String keywords}
)

Implementation

const PdfAttributes({
  required this.creator,
  required this.author,
  required this.title,
  required this.subject,
  required this.keywords,
});