undo method

  1. @override
Future<void> undo()
override

Performs an undo operation on the annotation history.
example:

await historyManager.undo();

Implementation

@override
Future<void> undo() async {
  await _channel.invokeMethod('annotation_undo');
}