getFileName method

Future<String> getFileName()

Gets the file name of the PDF document.

example:

var fileName = await document.getFileName();

Implementation

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