PdfPageAnnotations constructor

const PdfPageAnnotations({
  1. required int pageIndex,
  2. required List<PdfAnnotation> annotations,
})

Creates an immutable PdfPageAnnotations value.

Implementation

const PdfPageAnnotations({
  required this.pageIndex,
  required this.annotations,
});