attach method
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());
}
Attach a specific table to the session. If never called, the session records mutations on every table (the default).
void attach(String table) {
_tables.add(table.toLowerCase());
}