liveIds property

Iterable<Object?> get liveIds

V50: snapshot of all ids across every cell.

Implementation

Iterable<Object?> get liveIds => [
      for (var c = 0; c < nlist; c++)
        for (var i = 0; i < _cellCounts[c]; i++) _cellIds[c][i],
    ];