recorderConfiguration property
The current RecorderConfiguration in use by the recorder.
Returns the active configuration reflecting the settings applied at creation or through setRecorderConfiguration. Useful for inspection or diagnostics.
Changing the configuration while recording does not take effect. Use the setRecorderConfiguration method to apply a new configuration.
Returns
- A RecorderConfiguration instance containing the current settings.
See also:
- setRecorderConfiguration — Apply a new configuration to the recorder.
- RecorderConfiguration — Configuration class used to create or update the recorder.
Implementation
RecorderConfiguration get recorderConfiguration {
final OperationResult resultString = objectMethod(
pointerId,
'Recorder',
'getConfiguration',
);
return RecorderConfiguration.init(resultString['result']);
}