currentRecordPath property

String get currentRecordPath

Gets the path to the current log file.

Returns

  • The path to the current log file.

Throws

  • An exception if it fails

Implementation

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