didChangeAccessibilityFeatures method

  1. @override
  2. @mustCallSuper
void didChangeAccessibilityFeatures()
inherited

Called when the system changes the set of currently active accessibility features.

Implementation

@override
@mustCallSuper
void didChangeAccessibilityFeatures() {
  super.didChangeAccessibilityFeatures();
  //
  forEachState((state) {
    state.didChangeAccessibilityFeatures();
  }, reversed: true, remove: this);
}