CaretAnnotation constructor
CaretAnnotation({
- String? id,
- required List<
double> bbox, - String? createdAt,
- String? creatorName,
- String? contents,
- required Color? color,
- String? symbol,
- required int pageIndex,
- double opacity = 1.0,
- int? pdfObjectId,
- List<
AnnotationFlag> ? flags, - String? updatedAt,
- String? name,
- String? subject,
- Map<
String, dynamic> ? customData,
Implementation
CaretAnnotation({
super.id,
required super.bbox,
super.createdAt,
super.creatorName,
this.contents,
required this.color,
this.symbol,
required super.pageIndex,
super.opacity,
super.pdfObjectId,
super.flags,
super.updatedAt,
super.name,
super.subject,
super.hidden,
super.customData,
}) : super(type: AnnotationType.caret);