redo method

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

Performs a redo operation on the annotation history.

example:

await historyManager.redo();

Implementation

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