You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 16, 2026. It is now read-only.
/// Represents an object with observable state or properties.////// The interface does not require any specific technique to implement/// observability. You may implement it in the following ways:////// - Extend or mixin [ObservableChangeNotifier] or [ObservableStateNotifier]/// - Implement the interface yourself and provide your own implementationabstractclassObservable<CextendsChangeRecord> {
/// Emits a list of changes when the state of the object changes. /// /// Changes should produced in order, if significant.Stream<List<C>> get changes;
}