NoteAnnotation constructor
NoteAnnotation({
- String? id,
- required TextContent text,
- Color? color,
- required List<
double> bbox, - String? createdAt,
- required int pageIndex,
- NoteIcon icon = NoteIcon.note,
- String? creatorName,
- double opacity = 1.0,
- int? pdfObjectId,
- List<
AnnotationFlag> ? flags, - String? updatedAt,
- String? name,
- String? subject,
- Map<
String, dynamic> ? customData,
Implementation
NoteAnnotation({
super.id,
required this.text,
this.color,
required super.bbox,
super.createdAt,
required super.pageIndex,
this.icon = NoteIcon.note,
super.creatorName,
super.opacity,
super.pdfObjectId,
super.flags,
super.updatedAt,
super.name,
super.subject,
super.hidden = false,
super.customData,
}) : super(type: AnnotationType.note);