StampAnnotation constructor
StampAnnotation({
- String? id,
- required List<
double> bbox, - String? createdAt,
- String? creatorName,
- required StampType stampType,
- String? attachment,
- double rotation = 0.0,
- String? title,
- Color? color,
- String? subtitle,
- required int pageIndex,
- double opacity = 1.0,
- int? pdfObjectId,
- List<
AnnotationFlag> ? flags, - String? updatedAt,
- String? name,
- String? subject,
- 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);