$$CallRectanglesTableTableManager constructor

$$CallRectanglesTableTableManager(
  1. _$ScopedDatabase db,
  2. $CallRectanglesTable table
)

Implementation

$$CallRectanglesTableTableManager(
    _$ScopedDatabase db, $CallRectanglesTable table)
    : super(TableManagerState(
        db: db,
        table: table,
        createFilteringComposer: () =>
            $$CallRectanglesTableFilterComposer($db: db, $table: table),
        createOrderingComposer: () =>
            $$CallRectanglesTableOrderingComposer($db: db, $table: table),
        createComputedFieldComposer: () =>
            $$CallRectanglesTableAnnotationComposer($db: db, $table: table),
        updateCompanionCallback: ({
          Value<String> chatId = const Value.absent(),
          Value<String> rect = const Value.absent(),
          Value<int> rowid = const Value.absent(),
        }) =>
            CallRectanglesCompanion(
          chatId: chatId,
          rect: rect,
          rowid: rowid,
        ),
        createCompanionCallback: ({
          required String chatId,
          required String rect,
          Value<int> rowid = const Value.absent(),
        }) =>
            CallRectanglesCompanion.insert(
          chatId: chatId,
          rect: rect,
          rowid: rowid,
        ),
        withReferenceMapper: (p0) => p0
            .map((e) => (e.readTable(table), BaseReferences(db, table, e)))
            .toList(),
        prefetchHooksCallback: null,
      ));