laad method

Future<void> laad()

Implementation

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