recorderConfiguration property

RecorderConfiguration get recorderConfiguration

Retrieves the current configuration of the recorder.

Returns

This method provides access to the current configuration used by the recorder. The returned configuration reflects the parameters set during initialization or any subsequent modifications made via recorderConfiguration setter. This can be useful for verifying the recorder's setup or for debugging purposes.

Throws

  • An exception if it fails

Implementation

RecorderConfiguration get recorderConfiguration {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Recorder',
    'getConfiguration',
  );

  return RecorderConfiguration.fromJson(resultString['result']);
}