Item constructor

Item({
  1. String? label,
  2. String? symbol,
  3. String? id,
  4. bool? boxTwo,
  5. int? color,
})

Implementation

Item({
  this.label,
  this.symbol,
  this.id,
  this.boxTwo,
  this.color,
});