logPath property

String get logPath

The file path of the log being played back.

This is useful for UI, diagnostics, or when exporting playback details.

Implementation

String get logPath {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PlaybackContainer',
    'getLogPath',
  );
  return resultString['result'];
}