addProduct method

void addProduct(
  1. Product product
)

Implementation

void addProduct(final Product product) {
  _products.add(product);
}