$$SettingsTableTableManager constructor
$$SettingsTableTableManager( - _$CommonDatabase db,
- $SettingsTable table
)
Implementation
$$SettingsTableTableManager(_$CommonDatabase db, $SettingsTable table)
: super(TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$SettingsTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$SettingsTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$SettingsTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback: ({
Value<String?> userId = const Value.absent(),
Value<bool?> enablePopups = const Value.absent(),
Value<String?> locale = const Value.absent(),
Value<bool?> showIntroduction = const Value.absent(),
Value<double?> sideBarWidth = const Value.absent(),
Value<String> callButtons = const Value.absent(),
Value<String> pinnedActions = const Value.absent(),
Value<String?> callButtonsPosition = const Value.absent(),
Value<bool?> workWithUsTabEnabled = const Value.absent(),
Value<String?> videoDevice = const Value.absent(),
Value<String?> audioDevice = const Value.absent(),
Value<String?> outputDevice = const Value.absent(),
Value<String?> screenDevice = const Value.absent(),
Value<String?> muteKeys = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) =>
SettingsCompanion(
userId: userId,
enablePopups: enablePopups,
locale: locale,
showIntroduction: showIntroduction,
sideBarWidth: sideBarWidth,
callButtons: callButtons,
pinnedActions: pinnedActions,
callButtonsPosition: callButtonsPosition,
workWithUsTabEnabled: workWithUsTabEnabled,
videoDevice: videoDevice,
audioDevice: audioDevice,
outputDevice: outputDevice,
screenDevice: screenDevice,
muteKeys: muteKeys,
rowid: rowid,
),
createCompanionCallback: ({
Value<String?> userId = const Value.absent(),
Value<bool?> enablePopups = const Value.absent(),
Value<String?> locale = const Value.absent(),
Value<bool?> showIntroduction = const Value.absent(),
Value<double?> sideBarWidth = const Value.absent(),
Value<String> callButtons = const Value.absent(),
Value<String> pinnedActions = const Value.absent(),
Value<String?> callButtonsPosition = const Value.absent(),
Value<bool?> workWithUsTabEnabled = const Value.absent(),
Value<String?> videoDevice = const Value.absent(),
Value<String?> audioDevice = const Value.absent(),
Value<String?> outputDevice = const Value.absent(),
Value<String?> screenDevice = const Value.absent(),
Value<String?> muteKeys = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) =>
SettingsCompanion.insert(
userId: userId,
enablePopups: enablePopups,
locale: locale,
showIntroduction: showIntroduction,
sideBarWidth: sideBarWidth,
callButtons: callButtons,
pinnedActions: pinnedActions,
callButtonsPosition: callButtonsPosition,
workWithUsTabEnabled: workWithUsTabEnabled,
videoDevice: videoDevice,
audioDevice: audioDevice,
outputDevice: outputDevice,
screenDevice: screenDevice,
muteKeys: muteKeys,
rowid: rowid,
),
withReferenceMapper: (p0) => p0
.map((e) => (e.readTable(table), BaseReferences(db, table, e)))
.toList(),
prefetchHooksCallback: null,
));