$$ChatItemViewsTableTableManager constructor
Implementation
$$ChatItemViewsTableTableManager(
_$ScopedDatabase db,
$ChatItemViewsTable table,
) : super(
TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$ChatItemViewsTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$ChatItemViewsTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$ChatItemViewsTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback:
({
Value<String> chatId = const Value.absent(),
Value<String> chatItemId = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) => ChatItemViewsCompanion(
chatId: chatId,
chatItemId: chatItemId,
rowid: rowid,
),
createCompanionCallback:
({
required String chatId,
required String chatItemId,
Value<int> rowid = const Value.absent(),
}) => ChatItemViewsCompanion.insert(
chatId: chatId,
chatItemId: chatItemId,
rowid: rowid,
),
withReferenceMapper: (p0) => p0
.map((e) => (e.readTable(table), BaseReferences(db, table, e)))
.toList(),
prefetchHooksCallback: null,
),
);