addRow method

void addRow(
  1. CyberDataRow row
)

Implementation

void addRow(CyberDataRow row) {
  if (_isDisposed) {
    return;
  }

  _rows.add(row);
  row.addListener(_onRowChanged);

  // ✅ Only notify if not in batch mode
  if (!_isBatchMode) {
    notifyListeners();
  }
}