PdfUriAnnotation constructor

PdfUriAnnotation({
  1. required PdfRect bounds,
  2. required String uri,
  3. PdfBorder? border,
  4. Set<PdfAnnotFlags>? flags,
  5. DateTime? date,
  6. PdfColor? color,
  7. String? subject,
  8. String? author,
})

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,
      );