PdfAnnotWidget constructor
PdfAnnotWidget({})
Create a widget annotation
Implementation
PdfAnnotWidget({
required PdfRect rect,
required this.fieldType,
this.fieldName,
PdfBorder? border,
Set<PdfAnnotFlags>? flags,
DateTime? date,
PdfColor? color,
this.backgroundColor,
this.highlighting,
String? subject,
String? author,
}) : super(
subtype: '/Widget',
rect: rect,
border: border,
flags: flags,
date: date,
color: color,
subject: subject,
author: author,
);