didUpdateWidget method
Called whenever the widget configuration changes.
Implementation
@override
void didUpdateWidget(covariant T oldWidget) {
super.didUpdateWidget(oldWidget);
final isFocused = isWidgetFocused;
updateFocusIfNeeded(_wasFocused, isFocused);
_wasFocused = isFocused;
}