annotationsOn method

Future<List<UPdfAnnotationInfo>> annotationsOn(
  1. int pageIndex
)

Implementation

Future<List<UPdfAnnotationInfo>> annotationsOn(int pageIndex) async {
  attach();
  final UPdfEdit? edit = _edit;
  if (edit == null) return const <UPdfAnnotationInfo>[];
  return edit.annotations(pageIndex);
}