flutter Bloc + Freezed is not emitting the same state twice. UI is not rebuilding
I'm trying to update state after creating an Object. I've created ObjectsState using freezed package, so there is no sence to use Equatable, because it is already add by package. class ObjectsState with _$ObjectsState { const factory ObjectsState.initial() = Initial;…