CPDFAnnotation constructor

CPDFAnnotation({
  1. required CPDFAnnotationType type,
  2. String title = "",
  3. required int page,
  4. String content = "",
  5. required String uuid,
  6. DateTime? createDate,
  7. required CPDFRectF rect,
})

Implementation

CPDFAnnotation({
  required this.type,
  this.title = "",
  required this.page,
  this.content = "",
  required this.uuid,
  this.createDate,
  required this.rect,
});