CPDFMarkupAnnotation constructor

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

Implementation

CPDFMarkupAnnotation({
  required super.type,
  super.title,
  required super.page,
  super.content,
  super.uuid = '',
  super.createDate,
  required super.rect,
  required this.markedText,
  required this.color,
  this.alpha = 255,
});