setLocale method

Future<void> setLocale(
  1. String locale
)

Implementation

Future<void> setLocale(String locale) async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  prefs.setString(LOCALE,locale);
}