attach method

void attach(
  1. String table
)

Attach a specific table to the session. If never called, the session records mutations on every table (the default).

Implementation

void attach(String table) {
  _tables.add(table.toLowerCase());
}