PdfPageText constructor

const PdfPageText({
  1. required int pageIndex,
  2. required String text,
  3. required bool hasUnicodeErrors,
  4. required bool hasTextLayer,
})

Creates an immutable PdfPageText value.

Implementation

const PdfPageText({
  required this.pageIndex,
  required this.text,
  required this.hasUnicodeErrors,
  required this.hasTextLayer,
});