setCustomOutputPath method

void setCustomOutputPath(
  1. String outputPath
)

By default the files are saved under the root of your app documents folder. You could use a custom output path to save the file somewhere else in your app documents folder.

Implementation

void setCustomOutputPath(String outputPath) {
  _outputPath = outputPath;
}