laad method
Implementation
Future<void> laad() async {
final prefs = await SharedPreferences.getInstance();
final code = prefs.getString(_key);
if (code != null) {
_locale = Locale(code);
notifyListeners();
}
}
Future<void> laad() async {
final prefs = await SharedPreferences.getInstance();
final code = prefs.getString(_key);
if (code != null) {
_locale = Locale(code);
notifyListeners();
}
}