I am trying to convert these lines of code into non-nullable statements, but encountering the error...
The body might complete normally, causing 'null' to be returned, but the return type is a potentially non-nullable type. Try adding either a return or a throw statement at the end.
child: BlocBuilder<LoginBloc, LoginState>(
builder: (context, state) {
if (state is LoginInitialState) {
return buildInitialUi();
} else if (state is LoginLoadingState) {
return buildLoadingUi();
} else if (state is LoginFailState) {
return buildFailureUi(state.message);
} else if (state is LoginSuccessState) {
emailCntrlr.text = "";
passCntrlr.text = "";
return Container();
}
},
),