CPDFInkAnnotation constructor
CPDFInkAnnotation({
- String title = "",
- required int page,
- String content = "",
- String uuid = '',
- DateTime? createDate,
- CPDFAnnotationMarkState markState = CPDFAnnotationMarkState.unmarked,
- CPDFAnnotationReviewState reviewState = CPDFAnnotationReviewState.none,
- CPDFRectF rect = const CPDFRectF(left: 0, top: 0, right: 0, bottom: 0),
- required Color color,
- double alpha = 255,
- required double borderWidth,
- List<
List< ? inkPath,List< >double> >
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);