invalidateLazyChildCache method

void invalidateLazyChildCache()

Clears cached lazy child rows so they are requested again later.

Implementation

void invalidateLazyChildCache() {
  _childLoadGeneration++;
  for (final row in buildedDataRows) {
    _invalidateLazyChildCache(row);
  }
  expansionChangeNotifier.notifyListeners();
}