enableAutoStartRecording method

SessionSettingsBuilder enableAutoStartRecording(
  1. bool enabled
)

Enables or disables auto start recording.

Implementation

SessionSettingsBuilder enableAutoStartRecording(bool enabled) {
  _autoStartRecording = enabled;
  return this;
}