AnnotationData constructor

AnnotationData({
  1. required String fileName,
  2. List<Map<String, Object>>? drawingPaths,
  3. List<Map<String, Object>>? textAnnotations,
  4. required double pdfPageWidth,
  5. required double pdfPageHeight,
})

Implementation

AnnotationData({
  required this.fileName,
  this.drawingPaths,
  this.textAnnotations,
  required this.pdfPageWidth,
  required this.pdfPageHeight,
});