How to correctly set the value of argument in initState in Flutter?
I'm having a bit of a problem with setting _selectedTime in initState in Flutter. I have some variables which used to be set with late late DateTime _selectedDate; late DateTime _selectedTime; late DateTime _currentMonth; Duration _duration = const Duration(hours: 1);…