TableUpdateQuery.onTableName constructor

const TableUpdateQuery.onTableName(
  1. String table, {
  2. UpdateKind? limitUpdateKind,
})

A query that listens for all updates on a specific table by its name.

The optional limitUpdateKind parameter can be used to limit the updates to a certain kind.

Implementation

const factory TableUpdateQuery.onTableName(String table,
    {UpdateKind? limitUpdateKind}) = SpecificUpdateQuery;