clearDisplayRect method

Future<void> clearDisplayRect()

Clear the rectangular area set when jumping to the page number through controller.setDisplayPageIndex Example:

await controller.clearDisplayRect();

Implementation

Future<void> clearDisplayRect() async {
  return await _channel.invokeMethod('clear_display_rect');
}