removeAnnotationReply method
Removes a plain annotation reply.
Example:
final replies = await document.getAnnotationReplies(annotation);
if (replies.isNotEmpty) {
await document.removeAnnotationReply(replies.first);
}
Since v2.6.8
Implementation
Future<bool> removeAnnotationReply(CPDFReplyAnnotation reply) async {
return await _channel.invokeMethod('remove_annotation_reply', {
..._annotationIdentityArgs(reply),
});
}