acceptChanges method

void acceptChanges()

Implementation

void acceptChanges() {
  for (var table in _tables.values) {
    table.acceptChanges();
  }
  if (!_isBatchMode) {
    notifyListeners();
  }
}