PriceTagData constructor

PriceTagData({
  1. int barCode = 0,
  2. String currency = 'R\$',
  3. int code = 0,
  4. String date = '',
  5. String description = '',
  6. num price = 0,
  7. num promoPrice = 0,
  8. int promoPriceQuantity = 0,
  9. String package = '',
  10. String brand = '',
})

Implementation

PriceTagData({
  this.barCode = 0,
  this.currency = 'R\$',
  this.code = 0,
  this.date = '',
  this.description = '',
  this.price = 0,
  this.promoPrice = 0,
  this.promoPriceQuantity = 0,
  this.package = '',
  this.brand = ''
});