watch<S> method
Watch the observables.
Implementation
@override
SaveObservableBase<S> watch<S>(
SaveProvider<S> provider,
) {
final obs = super.watch(provider);
// ignore: unrelated_type_equality_checks
if (obs == this) {
super.unwatch(provider);
}
return obs;
}