Item constructor

Item({
  1. String? id,
  2. String? name,
  3. String? symbol,
  4. int? marketCapRank,
  5. String? thumb,
  6. String? large,
  7. int? score,
})

Implementation

Item({
	this.id,
	this.name,
	this.symbol,
	this.marketCapRank,
	this.thumb,
	this.large,
	this.score,
});