PdfAnnotText constructor
PdfAnnotText({})
Create a text annotation
Implementation
PdfAnnotText({
required PdfRect rect,
required String content,
PdfBorder? border,
String? name,
Set<PdfAnnotFlags>? flags,
DateTime? date,
PdfColor? color,
String? subject,
String? author,
}) : super(
subtype: '/Text',
rect: rect,
border: border,
content: content,
name: name,
flags: flags,
date: date,
color: color,
subject: subject,
author: author,
);