removeObserver method
Removes the observer from a list of callbacks
to be notified when change takes place.
Implementation
@override
void removeObserver(final ValueObserverCallback<T> observer) {
_observers.remove(observer);
}
Removes the observer from a list of callbacks
to be notified when change takes place.
@override
void removeObserver(final ValueObserverCallback<T> observer) {
_observers.remove(observer);
}