CPDFInkAnnotation constructor

CPDFInkAnnotation({
  1. String title = "",
  2. required int page,
  3. String content = "",
  4. String uuid = '',
  5. DateTime? createDate,
  6. CPDFAnnotationMarkState markState = CPDFAnnotationMarkState.unmarked,
  7. CPDFAnnotationReviewState reviewState = CPDFAnnotationReviewState.none,
  8. CPDFRectF rect = const CPDFRectF(left: 0, top: 0, right: 0, bottom: 0),
  9. required Color color,
  10. double alpha = 255,
  11. required double borderWidth,
  12. List<List<List<double>>>? inkPath,
})

Implementation

CPDFInkAnnotation({
  super.title,
  required super.page,
  super.content,
  super.uuid = '',
  super.createDate,
  super.markState,
  super.reviewState,
  super.rect = const CPDFRectF(left: 0, top: 0, right: 0, bottom: 0),
  required this.color,
  this.alpha = 255,
  required this.borderWidth,
  this.inkPath,
}) : super(type: CPDFAnnotationType.ink);