CPDFImageAnnotation constructor

CPDFImageAnnotation({
  1. String title = "",
  2. String content = "",
  3. DateTime? createDate,
  4. CPDFAnnotationMarkState markState = CPDFAnnotationMarkState.unmarked,
  5. CPDFAnnotationReviewState reviewState = CPDFAnnotationReviewState.none,
  6. required int page,
  7. String uuid = '',
  8. required CPDFRectF rect,
  9. CPDFImageData? imageData,
})

Implementation

CPDFImageAnnotation(
    {super.title,
    super.content,
    super.createDate,
    super.markState,
    super.reviewState,
    required super.page,
    super.uuid = '',
    required super.rect,
    this.imageData})
    : super(type: CPDFAnnotationType.pictures);