InfoView constructor

const InfoView({
  1. Key? key,
  2. required PdfMetadata metadata,
  3. required PdfDocumentInfo docInfo,
  4. required DocumentInfoLabels labels,
  5. int? pageCount,
  6. String? filePath,
  7. int? fileSizeBytes,
  8. DateTime? fsCreated,
  9. DateTime? fsModified,
  10. String? locale,
})

Creates a InfoView.

Implementation

const InfoView({
  super.key,
  required this.metadata,
  required this.docInfo,
  required this.labels,
  this.pageCount,
  this.filePath,
  this.fileSizeBytes,
  this.fsCreated,
  this.fsModified,
  this.locale,
});