notifyAll method

void notifyAll(
  1. Locale? locale
)

region 切换本地化语言

Implementation

void notifyAll(Locale? locale) async {
  if (locale == null) {
    return;
  }
  _reset();
  await getLangData();
  _langStateDispatchs.forEach((key, value) {
    value.dispatchLangState(locale);
  });
}