CommodityModel constructor

const CommodityModel(
  1. int id,
  2. String name,
  3. IconData icon,
  4. Color color,
)

Implementation

const CommodityModel(
  this.id,
  this.name,
  this.icon,
  this.color,
);