List<Product> get userProducts => _userProducts;
Sets the list of user products and notifies listeners of the change.
set userProducts(List<Product> value) { _userProducts = value; notifyListeners(); }