removeAllAnnotations method
Delete all comments in the current document
example:
bool result = await document.removeAllAnnotations();
Implementation
Future<bool> removeAllAnnotations() async {
return await _channel.invokeMethod('remove_all_annotations');
}