removeRow method

void removeRow(
  1. DATA row
)

Implementation

void removeRow(DATA row) {
  _originalRows.remove(row);
  if (_isRowsModifiable) {
    _rows.remove(row);
  }
  notifyListeners();
}