addRow method
Implementation
void addRow(CyberDataRow row) {
if (_isDisposed) {
return;
}
_rows.add(row);
row.addListener(_onRowChanged);
// ✅ Only notify if not in batch mode
if (!_isBatchMode) {
notifyListeners();
}
}
void addRow(CyberDataRow row) {
if (_isDisposed) {
return;
}
_rows.add(row);
row.addListener(_onRowChanged);
// ✅ Only notify if not in batch mode
if (!_isBatchMode) {
notifyListeners();
}
}