InkAnnotation constructor
InkAnnotation({
- String? id,
- required InkLines lines,
- required double lineWidth,
- required List<
double> bbox, - String? createdAt,
- required int pageIndex,
- bool isDrawnNaturally = false,
- bool? isSignature,
- Color? strokeColor,
- Color? backgroundColor,
- BlendMode? blendMode,
- String? note,
- String? creatorName,
- double opacity = 1.0,
- int? pdfObjectId,
- List<
AnnotationFlag> ? flags, - String? updatedAt,
- String? name,
- String? subject,
- Map<
String, dynamic> ? customData,
Implementation
InkAnnotation({
super.id,
required this.lines,
required this.lineWidth,
required super.bbox,
super.createdAt,
required super.pageIndex,
this.isDrawnNaturally = false,
this.isSignature,
this.strokeColor,
this.backgroundColor,
this.blendMode,
this.note,
super.creatorName,
super.opacity,
super.pdfObjectId,
super.flags,
super.updatedAt,
super.name,
super.subject,
super.hidden = false,
super.customData,
}) : super(type: AnnotationType.ink);