getLogPath function

String getLogPath()

Implementation

String getLogPath() {
  var storeFile = new File(p.absolute('$homePath/Desktop/pt_linter.log'));
  if (!storeFile.existsSync()) {
    storeFile.createSync();
  }
  return p.absolute('$homePath/Desktop/pt_linter.log');
}