SettingsRow constructor

const SettingsRow({
  1. String? userId,
  2. bool? enablePopups,
  3. String? locale,
  4. bool? showIntroduction,
  5. double? sideBarWidth,
  6. required String callButtons,
  7. required String pinnedActions,
  8. bool? workWithUsTabEnabled,
  9. String? videoDevice,
  10. String? audioDevice,
  11. String? outputDevice,
  12. String? screenDevice,
  13. bool? noiseSuppression,
  14. String? noiseSuppressionLevel,
  15. bool? echoCancellation,
  16. bool? autoGainControl,
  17. bool? highPassFilter,
  18. String? muteKeys,
  19. double? videoVolume,
  20. required int logLevel,
})

Implementation

const SettingsRow({
  this.userId,
  this.enablePopups,
  this.locale,
  this.showIntroduction,
  this.sideBarWidth,
  required this.callButtons,
  required this.pinnedActions,
  this.workWithUsTabEnabled,
  this.videoDevice,
  this.audioDevice,
  this.outputDevice,
  this.screenDevice,
  this.noiseSuppression,
  this.noiseSuppressionLevel,
  this.echoCancellation,
  this.autoGainControl,
  this.highPassFilter,
  this.muteKeys,
  this.videoVolume,
  required this.logLevel,
});