logsDir property
Directory used to store recorder logs.
Returns an absolute path to the directory where log files are written.
Implementation
String get logsDir {
final OperationResult resultString = objectMethod(
pointerId,
'RecorderConfiguration',
'getLogsDir',
);
return resultString['result'];
}
Set the directory used to store recorder logs.
Provide an absolute path that will be used to write recorded log files.
Implementation
set logsDir(final String logsDir) {
objectMethod(
pointerId,
'RecorderConfiguration',
'setLogsDir',
args: logsDir,
);
}