changeToLightTheme method
Switches the app to ThemeMode.light and updates system UI colours.
Implementation
Future<void> changeToLightTheme() async {
emit(const ThemeState(themeMode: ThemeMode.light));
_changeThemeOfStatusBarAndNavigationBar();
}