CartsNotifier constructor

CartsNotifier({
  1. required GetCartsUseCase getCarts,
})

Implementation

CartsNotifier({required GetCartsUseCase getCarts})
  : _getCarts = getCarts,
    super(const AsyncValue.loading());