PdfUriAnnotation constructor
PdfUriAnnotation({})
Creates a URI annotation.
Implementation
PdfUriAnnotation({
required PdfRect bounds,
required String uri,
PdfBorder? border,
Set<PdfAnnotFlags>? flags,
DateTime? date,
PdfColor? color,
String? subject,
String? author,
}) : super(
rect: bounds,
url: uri,
border: border,
flags: flags,
date: date,
color: color,
subject: subject,
author: author,
);