$$KalamCheckpointsTableTableManager constructor
$$KalamCheckpointsTableTableManager(
- _$KalamSyncDatabase db,
- $KalamCheckpointsTable table
Implementation
$$KalamCheckpointsTableTableManager(
_$KalamSyncDatabase db,
$KalamCheckpointsTable table,
) : super(
TableManagerState(
db: db,
table: table,
createFilteringComposer: () =>
$$KalamCheckpointsTableFilterComposer($db: db, $table: table),
createOrderingComposer: () =>
$$KalamCheckpointsTableOrderingComposer($db: db, $table: table),
createComputedFieldComposer: () =>
$$KalamCheckpointsTableAnnotationComposer($db: db, $table: table),
updateCompanionCallback:
({
Value<String> accountKey = const Value.absent(),
Value<String> subscriptionId = const Value.absent(),
Value<String> seq = const Value.absent(),
Value<DateTime> updatedAt = const Value.absent(),
Value<int> rowid = const Value.absent(),
}) => KalamCheckpointsCompanion(
accountKey: accountKey,
subscriptionId: subscriptionId,
seq: seq,
updatedAt: updatedAt,
rowid: rowid,
),
createCompanionCallback:
({
required String accountKey,
required String subscriptionId,
required String seq,
required DateTime updatedAt,
Value<int> rowid = const Value.absent(),
}) => KalamCheckpointsCompanion.insert(
accountKey: accountKey,
subscriptionId: subscriptionId,
seq: seq,
updatedAt: updatedAt,
rowid: rowid,
),
withReferenceMapper: (p0) => p0
.map((e) => (e.readTable(table), BaseReferences(db, table, e)))
.toList(),
prefetchHooksCallback: null,
),
);