PdfAnnotation constructor

const PdfAnnotation({
  1. required AnnotationType type,
  2. required Rect rect,
  3. required int xref,
  4. String? content,
  5. String? title,
  6. String? subject,
  7. String? creationDate,
  8. String? modDate,
  9. List<double>? color,
  10. List<double>? fillColor,
  11. double? borderWidth,
  12. double? opacity,
  13. int flags = 0,
  14. String? icon,
  15. String? lineEnding,
  16. List<Point>? vertices,
  17. List<List<double>>? quadPoints,
  18. int? popupXref,
})

Implementation

const PdfAnnotation({
  required this.type,
  required this.rect,
  required this.xref,
  this.content,
  this.title,
  this.subject,
  this.creationDate,
  this.modDate,
  this.color,
  this.fillColor,
  this.borderWidth,
  this.opacity,
  this.flags = 0,
  this.icon,
  this.lineEnding,
  this.vertices,
  this.quadPoints,
  this.popupXref,
});