PaymentTokenContract constructor

PaymentTokenContract({
  1. int? id,
  2. String? symbol,
  3. String? address,
  4. String? imageUrl,
  5. String? name,
  6. int? decimals,
  7. String? ethPrice,
  8. String? usdPrice,
})

Implementation

PaymentTokenContract({
  this.id,
  this.symbol,
  this.address,
  this.imageUrl,
  this.name,
  this.decimals,
  this.ethPrice,
  this.usdPrice,
});