didChangePlatformBrightness method

void didChangePlatformBrightness()

Brightness changed.

Implementation

// To override WidgetsBindingObserver.didChangePlatformBrightness()
void didChangePlatformBrightness() {
  // Record the triggered event
  assert(() {
    if (_debugPrintEvents) {
      debugPrint(
          '$_consoleLeadingLine didChangePlatformBrightness() in $_consoleClassName');
    }
    return true;
  }());
}