recorderConfiguration property

RecorderConfiguration get recorderConfiguration

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

See also:

Implementation

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

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