$$CallCredentialsTableTableManager constructor

$$CallCredentialsTableTableManager(
  1. _$ScopedDatabase db,
  2. $CallCredentialsTable table
)

Implementation

$$CallCredentialsTableTableManager(
    _$ScopedDatabase db, $CallCredentialsTable table)
    : super(TableManagerState(
        db: db,
        table: table,
        createFilteringComposer: () =>
            $$CallCredentialsTableFilterComposer($db: db, $table: table),
        createOrderingComposer: () =>
            $$CallCredentialsTableOrderingComposer($db: db, $table: table),
        createComputedFieldComposer: () =>
            $$CallCredentialsTableAnnotationComposer($db: db, $table: table),
        updateCompanionCallback: ({
          Value<String> callId = const Value.absent(),
          Value<String> credentials = const Value.absent(),
          Value<int> rowid = const Value.absent(),
        }) =>
            CallCredentialsCompanion(
          callId: callId,
          credentials: credentials,
          rowid: rowid,
        ),
        createCompanionCallback: ({
          required String callId,
          required String credentials,
          Value<int> rowid = const Value.absent(),
        }) =>
            CallCredentialsCompanion.insert(
          callId: callId,
          credentials: credentials,
          rowid: rowid,
        ),
        withReferenceMapper: (p0) => p0
            .map((e) => (e.readTable(table), BaseReferences(db, table, e)))
            .toList(),
        prefetchHooksCallback: null,
      ));