appearance property

PdfAppearance get appearance

Gets appearance of the annotation.

Implementation

PdfAppearance get appearance {
  _helper.appearance ??= PdfAppearance(this);
  return _helper.appearance!;
}
set appearance (PdfAppearance value)

Sets appearance of the annotation.

Implementation

set appearance(PdfAppearance value) {
  _helper.appearance = value;
}