Item.colors constructor

Item.colors({
  1. String? id,
  2. bool? boxTwo = false,
  3. int? color,
})

Implementation

Item.colors({
  this.id,
  this.boxTwo = false,
  this.color,
});