languageStatus top-level property
A StateNotifierProvider
that exposes the current language state.
Use this provider to access or update the language in the application.
Implementation
final languageStatus =
StateNotifierProvider<LanguageChangeProvider, LanguageState>((ref) {
return LanguageChangeProvider();
});