CPDFImageAnnotation constructor
CPDFImageAnnotation({
- String title = "",
- String content = "",
- DateTime? createDate,
- required int page,
- String uuid = '',
- required CPDFRectF rect,
- @Deprecated('Use imageData instead. This legacy Base64 field will be removed in a future release.') String? image,
- 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);