didChangePlatformBrightness method

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

Called when the platform brightness changes.

Implementation

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