AnnotationView constructor

const AnnotationView({
  1. Key? key,
  2. required List<PdfPageAnnotations> annotations,
  3. required ViewerController controller,
  4. required String noteLabel,
  5. required String highlightLabel,
  6. required String totalLabel(
    1. int count
    ),
  7. required String noneFoundText,
  8. required String toggleOnLabel,
  9. required String toggleOffLabel,
  10. String? locale,
})

Creates a AnnotationView.

Implementation

const AnnotationView({
  super.key,
  required this.annotations,
  required this.controller,
  required this.noteLabel,
  required this.highlightLabel,
  required this.totalLabel,
  required this.noneFoundText,
  required this.toggleOnLabel,
  required this.toggleOffLabel,
  this.locale,
});