setDebugFileSync static method

void setDebugFileSync(
  1. String path,
  2. String fileName
)

Sets the debug file to be in the path path with file name fileName. Invokes setDebugFileDirectorySync and setDebugFileName in sequence.

Throws an ArgumentError is path or debugFileName are empty.

Implementation

static void setDebugFileSync(final String path, final String fileName) {
  _setDebugFileDirectorySync(path);
  _setDebugFileName(fileName);
}