getDocumentPath method

Future<String> getDocumentPath()

Get the path of the current document.

example:

var path = await controller.document.getDocumentPath();

Implementation

Future<String> getDocumentPath() async {
  return await _channel.invokeMethod('get_document_path');
}