$$CallKitCallsTableTableManager constructor
Implementation
$$CallKitCallsTableTableManager(_$CommonDatabase db, $CallKitCallsTable table)
: super(
TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$CallKitCallsTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$CallKitCallsTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$CallKitCallsTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback:
({
Value<String> id = const Value.absent(),
Value<PreciseDateTime> at = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) => CallKitCallsCompanion(id: id, at: at, rowid: rowid),
createCompanionCallback:
({
required String id,
required PreciseDateTime at,
Value<int> rowid = const Value.absent(),
}) => CallKitCallsCompanion.insert(id: id, at: at, rowid: rowid),
withReferenceMapper: (p0) => p0
.map((e) => (e.readTable(table), BaseReferences(db, table, e)))
.toList(),
prefetchHooksCallback: null,
),
);