currentRecordPath property

String get currentRecordPath

Path to the current log file.

Returns

  • A string with the absolute path to the current recording file.

Implementation

String get currentRecordPath {
  final OperationResult resultString = objectMethod(
    pointerId,
    'Recorder',
    'getCurrentRecordPath',
  );
  return resultString['result'];
}