selectAnnotation method
Selects the specified annotation in the current document.
await controller.selectAnnotation(new Annot('Hello', 1));
Implementation
Future<void> selectAnnotation(Annot annotation) {
return _channel.invokeMethod(Functions.selectAnnotation,
<String, dynamic>{Parameters.annotation: jsonEncode(annotation)});
}