WidgetAnnotation constructor
WidgetAnnotation({
- String? id,
- required List<
double> bbox, - String? createdAt,
- String? creatorName,
- required String fieldType,
- String? fieldName,
- dynamic value,
- List<
String> ? options, - bool? readOnly,
- bool? required,
- bool? multiline,
- required int pageIndex,
- double opacity = 1.0,
- int? pdfObjectId,
- List<
AnnotationFlag> ? flags, - String? updatedAt,
- String? name,
- String? subject,
- Map<
String, dynamic> ? customData,
Implementation
WidgetAnnotation({
super.id,
required super.bbox,
super.createdAt,
super.creatorName,
required this.fieldType,
this.fieldName,
this.value,
this.options,
this.readOnly,
this.required,
this.multiline,
required super.pageIndex,
super.opacity,
super.pdfObjectId,
super.flags,
super.updatedAt,
super.name,
super.subject,
super.hidden,
super.customData,
}) : super(type: AnnotationType.widget);