copyWith method
SettingsCompanion
copyWith({ - Value<String?>? userId,
- Value<String?>? locale,
- Value<bool?>? showIntroduction,
- 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,
})
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,
);
}