refresh method
Notifies all listeners to update.
This method triggers all registered listeners to call their update callbacks. It's typically called when the state changes.
Implementation
@protected
void refresh() {
assert(_debugAssertNotDisposed());
_notifyUpdate();
}