createExportFile method

void createExportFile()

Uses FileService to write export file to the disk with the given path and content

exportFullPath needs to be fully qualified path where the export file needs to be created

exportContent is the raw string containing the contents of the export file

Implementation

void createExportFile() {
  FileService.writeFile(exportFullPath, exportContent);
}