Transaction constructor

Transaction(
  1. Customer customer,
  2. List<Item> productItem,
  3. int totalPrice
)

Implementation

Transaction(this.customer, this.productItem, this.totalPrice);