syncTable<T extends Table> abstract method

Future<ShapeSubscription> syncTable<T extends Table>(
  1. T table, {
  2. SyncIncludeBuilder<T>? include,
  3. SyncWhereBuilder<T>? where,
  4. String? key,
})

Creates a Shape subscription. A shape is a set of related data that's synced onto the local device. https://electric-sql.com/docs/usage/data-access/shapes

Implementation

Future<ShapeSubscription> syncTable<T extends Table>(
  T table, {
  SyncIncludeBuilder<T>? include,
  SyncWhereBuilder<T>? where,
  String? key,
});