CPDFImageAnnotation constructor

CPDFImageAnnotation({
  1. String title = "",
  2. String content = "",
  3. DateTime? createDate,
  4. required int page,
  5. String uuid = '',
  6. required CPDFRectF rect,
  7. @Deprecated('Use imageData instead. This legacy Base64 field will be removed in a future release.') String? image,
  8. CPDFImageData? imageData,
})

Implementation

CPDFImageAnnotation(
    {super.title,
    super.content,
    super.createDate,
    required super.page,
    super.uuid = '',
    required super.rect,
    @Deprecated(
      'Use imageData instead. This legacy Base64 field will be removed in a future release.')
    this.image,
    this.imageData})
    : super(type: CPDFAnnotationType.pictures);