Item.symbols constructor

Item.symbols({
  1. String? id,
  2. bool? boxTwo = false,
  3. String? symbol,
})

Implementation

Item.symbols({
  this.id,
  this.boxTwo = false,
  this.symbol,
});