removeTable method

void removeTable(
  1. String tableName
)

Implementation

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

    if (!_isBatchMode) {
      notifyListeners();
    }
  }
}