unobserve method
Stop listening to specific observables
Implementation
void unobserve(List<Observable> observables) {
observables.forEach((observable) {
final subscription = _observablesSubcriptions[observable];
subscription?.cancel();
_observablesSubcriptions.remove(observable);
});
}