Class Annot in Flutter

Product:
Document viewer

Product Version:
Latest

I used the method getAnnotationsOnPage to through each page and get annotations on each page, then filter annotations for signature annotations, but this method returns a List annotations, each element of which contains an object like this

{id: 7B7CEAB1-CAAA-4FFB-9DB8-5AA21BDFFAB3, pageNumber: 1} How will I be able to filter these elements to select only signature annotations It does not contain any value that can tell me the type of this annotation , knowing that the type of these objects is Annot Only .

Please give a brief summary of your issue:
(Think of this as an email subject)

Please describe your issue and provide steps to reproduce it:
(The more descriptive your answer, the faster we are able to help you)

Please provide a link to a minimal sample where the issue is reproducible:

The Flutter APIs are aimed to mostly customize around the UI only, if you are going deep in the programmatic annotation API, then I would recommend you to fork the repository and add your own native implementation of such functionality.

You can loop through annotations with type as described here:

Thanks.