void dispatchLocaleChanged(Locale locale)

Notify all the observers that the locale has changed (using WidgetsBindingObserver.didChangeLocale), giving them the locale argument.

Source

void dispatchLocaleChanged(Locale locale) {
  for (WidgetsBindingObserver observer in _observers)
    observer.didChangeLocale(locale);
}