changesOfType<T> method
All recorded changes for any Shard<T> of the given state type.
Implementation
List<ObservedChange<T>> changesOfType<T>() {
return _changes.whereType<ObservedChange<T>>().toList(growable: false);
}
All recorded changes for any Shard<T> of the given state type.
List<ObservedChange<T>> changesOfType<T>() {
return _changes.whereType<ObservedChange<T>>().toList(growable: false);
}