سلام
وقتی افزودن به سبد خرید رو میزنم داخل product bloc اررو زیر رو میده
e:Dio Error[bad response]:the request returned an invalid status code of 404
این هم کدش هست
if(event is CartAddButtonClicked){
try{
emit(ProductAddToCartButtonLoading());
final result=await cartRepository.add(event.productId);
emit(ProductAddToCartSuccess());
}catch(e){
emit(ProductAddToCartError(AppExeption()));
}
}