is it a good practice to initialize and create instance of Bloc in InItState() method in statefulWidget? or not, and why, thank you:
LoginBloc loginBloc;
@override
void initState() {
loginBloc = BlocProvider.of<LoginBloc>(context);
super.initState();
}