removeAnnotation method
Removes an annotation from the current page.
example:
bool result = document.removeAnnotation(annotation);
Implementation
Future<bool> removeAnnotation(CPDFAnnotation annotation) async {
  return await _channel.invokeMethod('remove_annotation', {
    'page_index': annotation.page,
    'uuid': annotation.uuid,
  });
}