Exchange constructor

Exchange({
  1. String? id,
  2. String? name,
  3. int? yearEstablished,
  4. String? country,
  5. dynamic description,
  6. String? url,
  7. String? image,
  8. bool? hasTradingIncentive,
  9. int? trustScore,
  10. int? trustScoreRank,
  11. double? tradeVolume24hBtc,
  12. double? tradeVolume24hBtcNormalized,
  13. required dynamic json,
})

Implementation

Exchange(
    {this.id,
    this.name,
    this.yearEstablished,
    this.country,
    this.description,
    this.url,
    this.image,
    this.hasTradingIncentive,
    this.trustScore,
    this.trustScoreRank,
    this.tradeVolume24hBtc,
    this.tradeVolume24hBtcNormalized,
    required json}) {
  this.json = json;
}