TextMarkupAnnotation constructor

TextMarkupAnnotation({
  1. String? id,
  2. required AnnotationType type,
  3. required List<double> bbox,
  4. String? createdAt,
  5. String? creatorName,
  6. required List<List<double>> rects,
  7. BlendMode? blendMode,
  8. required Color? color,
  9. String? note,
  10. required int pageIndex,
  11. double opacity = 1.0,
  12. int? pdfObjectId,
  13. List<AnnotationFlag>? flags,
  14. String? updatedAt,
  15. String? name,
  16. String? subject,
  17. bool hidden = false,
  18. Map<String, dynamic>? customData,
})

Implementation

TextMarkupAnnotation({
  super.id,
  required super.type,
  required super.bbox,
  super.createdAt,
  super.creatorName,
  required this.rects,
  this.blendMode,
  required this.color,
  this.note,
  required super.pageIndex,
  super.opacity,
  super.pdfObjectId,
  super.flags,
  super.updatedAt,
  super.name,
  super.subject,
  super.hidden,
  super.customData,
});