showBotaView method

Future<void> showBotaView()

Displays the BOTA view, which includes the document outline, bookmarks, and annotation list.

Example:

await controller.showBotaView();

Implementation

Future<void> showBotaView() async {
  await _channel.invokeMethod('show_bota_view');
}