refreshStatus function

void refreshStatus(
  1. dynamic status
)

Updates a global status value and triggers rebuilds for any listeners that depend on the status of that type.

This allows widgets to react to application-wide changes in state without explicitly tracking value instances.

Implementation

void refreshStatus(dynamic status) {
  Reactivity.refreshStatus(status);
}