copyWith method

SettingsCompanion copyWith({
  1. Value<String?>? userId,
  2. Value<bool?>? enablePopups,
  3. Value<String?>? locale,
  4. Value<bool?>? showIntroduction,
  5. Value<double?>? sideBarWidth,
  6. Value<String>? callButtons,
  7. Value<String>? pinnedActions,
  8. Value<String?>? callButtonsPosition,
  9. Value<bool?>? workWithUsTabEnabled,
  10. Value<String?>? videoDevice,
  11. Value<String?>? audioDevice,
  12. Value<String?>? outputDevice,
  13. Value<String?>? screenDevice,
  14. Value<String?>? muteKeys,
  15. Value<int>? rowid,
})

Implementation

SettingsCompanion copyWith(
    {Value<String?>? userId,
    Value<bool?>? enablePopups,
    Value<String?>? locale,
    Value<bool?>? showIntroduction,
    Value<double?>? sideBarWidth,
    Value<String>? callButtons,
    Value<String>? pinnedActions,
    Value<String?>? callButtonsPosition,
    Value<bool?>? workWithUsTabEnabled,
    Value<String?>? videoDevice,
    Value<String?>? audioDevice,
    Value<String?>? outputDevice,
    Value<String?>? screenDevice,
    Value<String?>? muteKeys,
    Value<int>? rowid}) {
  return SettingsCompanion(
    userId: userId ?? this.userId,
    enablePopups: enablePopups ?? this.enablePopups,
    locale: locale ?? this.locale,
    showIntroduction: showIntroduction ?? this.showIntroduction,
    sideBarWidth: sideBarWidth ?? this.sideBarWidth,
    callButtons: callButtons ?? this.callButtons,
    pinnedActions: pinnedActions ?? this.pinnedActions,
    callButtonsPosition: callButtonsPosition ?? this.callButtonsPosition,
    workWithUsTabEnabled: workWithUsTabEnabled ?? this.workWithUsTabEnabled,
    videoDevice: videoDevice ?? this.videoDevice,
    audioDevice: audioDevice ?? this.audioDevice,
    outputDevice: outputDevice ?? this.outputDevice,
    screenDevice: screenDevice ?? this.screenDevice,
    muteKeys: muteKeys ?? this.muteKeys,
    rowid: rowid ?? this.rowid,
  );
}