Table.localOnly constructor

const Table.localOnly(
  1. String name,
  2. List<Column> columns, {
  3. List<Index> indexes = const [],
  4. String? viewName,
})

Create a table that only exists locally.

This table does not record changes, and is not synchronized from the service.

Implementation

const Table.localOnly(this.name, this.columns,
    {this.indexes = const [], String? viewName})
    : localOnly = true,
      insertOnly = false,
      _viewNameOverride = viewName;