$$KalamActionStepsTableTableManager constructor

$$KalamActionStepsTableTableManager(
  1. _$KalamSyncDatabase db,
  2. $KalamActionStepsTable table
)

Implementation

$$KalamActionStepsTableTableManager(
  _$KalamSyncDatabase db,
  $KalamActionStepsTable table,
) : super(
      TableManagerState(
        db: db,
        table: table,
        createFilteringComposer: () =>
            $$KalamActionStepsTableFilterComposer($db: db, $table: table),
        createOrderingComposer: () =>
            $$KalamActionStepsTableOrderingComposer($db: db, $table: table),
        createComputedFieldComposer: () =>
            $$KalamActionStepsTableAnnotationComposer($db: db, $table: table),
        updateCompanionCallback:
            ({
              Value<String> actionId = const Value.absent(),
              Value<String> name = const Value.absent(),
              Value<String> status = const Value.absent(),
              Value<String?> resultJson = const Value.absent(),
              Value<String?> lastError = const Value.absent(),
              Value<DateTime> updatedAt = const Value.absent(),
              Value<int> rowid = const Value.absent(),
            }) => KalamActionStepsCompanion(
              actionId: actionId,
              name: name,
              status: status,
              resultJson: resultJson,
              lastError: lastError,
              updatedAt: updatedAt,
              rowid: rowid,
            ),
        createCompanionCallback:
            ({
              required String actionId,
              required String name,
              required String status,
              Value<String?> resultJson = const Value.absent(),
              Value<String?> lastError = const Value.absent(),
              required DateTime updatedAt,
              Value<int> rowid = const Value.absent(),
            }) => KalamActionStepsCompanion.insert(
              actionId: actionId,
              name: name,
              status: status,
              resultJson: resultJson,
              lastError: lastError,
              updatedAt: updatedAt,
              rowid: rowid,
            ),
        withReferenceMapper: (p0) => p0
            .map((e) => (e.readTable(table), BaseReferences(db, table, e)))
            .toList(),
        prefetchHooksCallback: null,
      ),
    );