PdfAnnotBase constructor

PdfAnnotBase(
  1. {required String subtype,
  2. required PdfRect rect,
  3. PdfBorder? border,
  4. String? content,
  5. String? name,
  6. Set<PdfAnnotFlags>? flags,
  7. DateTime? date,
  8. PdfColor? color,
  9. String? subject,
  10. String? author}
)

Implementation

PdfAnnotBase({
  required this.subtype,
  required this.rect,
  this.border,
  this.content,
  this.name,
  this.flags,
  this.date,
  this.color,
  this.subject,
  this.author,
});