didChangeViewFocus method
Called whenever the PlatformDispatcher receives a notification that the focus state on a view has changed.
Implementation
@override
void didChangeViewFocus(ViewFocusEvent event) {
super.didChangeViewFocus(event);
//
forEachState((state) {
state.didChangeViewFocus(event);
}, reversed: true, remove: this);
}