Table constructor
const
Table(})
Create a synced table.
Local changes are recorded, and remote changes are synced to the local table.
Implementation
const Table(
this.name,
this.columns, {
this.indexes = const [],
String? viewName,
super.localOnly,
super.ignoreEmptyUpdates,
super.trackMetadata,
super.trackPreviousValues,
}) : _viewNameOverride = viewName,
super(insertOnly: false);