StampAnnotation constructor

StampAnnotation({
  1. String? id,
  2. required List<double> bbox,
  3. String? createdAt,
  4. String? creatorName,
  5. required StampType stampType,
  6. String? attachment,
  7. double rotation = 0.0,
  8. String? title,
  9. Color? color,
  10. String? subtitle,
  11. required int pageIndex,
  12. double opacity = 1.0,
  13. int? pdfObjectId,
  14. List<AnnotationFlag>? flags,
  15. String? updatedAt,
  16. String? name,
  17. String? subject,
  18. bool hidden = false,
  19. Map<String, dynamic>? customData,
})

Implementation

StampAnnotation({
  super.id,
  required super.bbox,
  super.createdAt,
  super.creatorName,
  required this.stampType,
  this.attachment,
  this.rotation = 0.0,
  this.title,
  this.color,
  this.subtitle,
  required super.pageIndex,
  super.opacity,
  super.pdfObjectId,
  super.flags,
  super.updatedAt,
  super.name,
  super.subject,
  super.hidden,
  super.customData,
}) : super(type: AnnotationType.stamp);