CPDFNoteAnnotation constructor

CPDFNoteAnnotation({
  1. String title = "",
  2. required int page,
  3. String content = "",
  4. String uuid = '',
  5. DateTime? createDate,
  6. required CPDFRectF rect,
  7. required Color color,
  8. double alpha = 255,
})

Implementation

CPDFNoteAnnotation({
  super.title,
  required super.page,
  super.content,
  super.uuid = '',
  super.createDate,
  required super.rect,
  required this.color,
  this.alpha = 255,
}) : super(type: CPDFAnnotationType.note);