CPDFInkAnnotation constructor

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

Implementation

CPDFInkAnnotation({
  super.title,
  required super.page,
  super.content,
  super.uuid = '',
  super.createDate,
  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);