setLocale method

E setLocale(
  1. E locale
)

Sets locale, but do not change potential TranslationProvider's state Useful when you are in a pure Dart environment (without Flutter) This will be overwritten when using with flutter.

Implementation

E setLocale(E locale) {
  GlobalLocaleState.instance.setLocale(locale);
  return locale;
}