You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.
Hi. I noticed that this is happening quite often when team member forgets to handle Error state coming from Bloc. Can we have special rule for it? Similar to list all props in equatable get props.
builder: (BuildContext context, EvChargerState state) {
if (state is LoadingState) {
return Text('LoadingUserState)
}
if (state is LoadedUserState) {
return Text(state.name);
}
// DCM error: There is one State not handled in BlocBuilder : UserErrorState. <--- New rule needed
The text was updated successfully, but these errors were encountered:
Hi. I noticed that this is happening quite often when team member forgets to handle Error state coming from Bloc. Can we have special rule for it? Similar to list all props in equatable
get props
.The text was updated successfully, but these errors were encountered: