logsDir property

String get logsDir

Gets the directory used to keep the logs.

This is an absolute path.

Implementation

String get logsDir {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RecorderConfiguration',
    'getLogsDir',
  );
  return resultString['result'];
}
set logsDir (String logsDir)

Sets the directory used to keep the logs.

This is an absolute path.

Implementation

set logsDir(final String logsDir) {
  objectMethod(
    pointerId,
    'RecorderConfiguration',
    'setLogsDir',
    args: logsDir,
  );
}