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. String? callButtonsPosition,
  9. bool? workWithUsTabEnabled,
  10. String? videoDevice,
  11. String? audioDevice,
  12. String? outputDevice,
  13. String? screenDevice,
  14. bool? noiseSuppression,
  15. String? noiseSuppressionLevel,
  16. bool? echoCancellation,
  17. bool? autoGainControl,
  18. bool? highPassFilter,
  19. String? muteKeys,
})

Implementation

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