Token constructor

Token({
  1. double? USD,
  2. int? decimals,
  3. String? ethereumAddress,
  4. int? ethereumBlockNum,
  5. String? fiatUpdate,
  6. int? id,
  7. int? itemId,
  8. String? name,
  9. String? symbol,
})

Implementation

Token({
  // ignore: non_constant_identifier_names
  this.USD,
  this.decimals,
  this.ethereumAddress,
  this.ethereumBlockNum,
  this.fiatUpdate,
  this.id,
  this.itemId,
  this.name,
  this.symbol,
});