removeTable method
Implementation
void removeTable(String tableName) {
final table = _tables[tableName];
if (table != null) {
table.removeListener(_onTableChanged);
table.dispose();
_tables.remove(tableName);
if (!_isBatchMode) {
notifyListeners();
}
}
}