clearSavedLocale method
Clear saved locale so that next app start will use system locale.
Implementation
Future<void> clearSavedLocale() async {
final prefs = await SharedPreferences.getInstance();
await prefs.remove(_kSavedLocaleKey);
}
Clear saved locale so that next app start will use system locale.
Future<void> clearSavedLocale() async {
final prefs = await SharedPreferences.getInstance();
await prefs.remove(_kSavedLocaleKey);
}