I have an observable x.
@observable
double x
Now i have an action which mutates the x
@action
double mutatex(double z){
x=z;
}
Now whenever i call the action, the respective Observer widget gets rebuilt. Is there anyway i can prevent the rebuild of the observer widget upon calling the action. i.e. action method gets called and the mutation happens but the respective observer ignores the action.