olds property

List<T> get olds

All old items affected by changes.

Implementation

List<T> get olds => [
      ...removed,
      ...moved.map((e) => e.$1),
      ...updated.map((e) => e.$1),
    ];