ProductItem constructor

const ProductItem({
  1. String name = 'Apple',
  2. int quantity = 4,
  3. String price = '5',
  4. String currency = 'USD',
})

Implementation

const ProductItem({
  this.name = 'Apple',
  this.quantity = 4,
  this.price = '5',
  this.currency = 'USD',
});