showDocumentInfoView method

Future<void> showDocumentInfoView()

Displays the document information view.

Example:

await controller.showDocumentInfoView();

Implementation

Future<void> showDocumentInfoView() async {
  await _channel.invokeMethod('show_document_info_view');
}