refreshOnly function

void refreshOnly(
  1. ReactiveKey key
)

Triggers a rebuild only for the widget associated with key.

Implementation

void refreshOnly(ReactiveKey key) {
  Reactivity.refresh(key);
}