Beers constructor

Beers({
  1. String? logoUrl,
  2. String? id,
  3. double? alcoholPourcentage,
  4. dynamic biterOnTen,
  5. String? description,
  6. String? name,
  7. int? colorId,
  8. dynamic videoUrl,
  9. String? colorName,
  10. double? salePriceByLiter,
  11. String? currency,
  12. double? arckipelToken,
})

Implementation

Beers({
  this.logoUrl,
  this.id,
  this.alcoholPourcentage,
  this.biterOnTen,
  this.description,
  this.name,
  this.colorId,
  this.videoUrl,
  this.colorName,
  this.salePriceByLiter,
  this.currency,
  this.arckipelToken,
});