CPDFAnnotation constructor

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

Implementation

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