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
And every time I emit new state I need to pass null for listenStatus so listener on UI dont trigger every time or I need to override listenWhen to handle it.
emit(state.copyWith(listenStatus: null))
Can you implemented something like this so when I dont pass nothing it will get CopyWithDefault value:
Currently have to manually write copyWithX even with freezed because of lack of this feature. Default value is often needed in CopyWith when working with bloc.
I am using freezed for state class in bloc.
And every time I emit new state I need to pass null for listenStatus so listener on UI dont trigger every time or I need to override listenWhen to handle it.
emit(state.copyWith(listenStatus: null))
Can you implemented something like this so when I dont pass nothing it will get CopyWithDefault value:
The text was updated successfully, but these errors were encountered: