getLocale method

Future<String> getLocale()

Implementation

Future<String> getLocale() async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  return prefs.getString(LOCALE)!;
}