CryptoCurrencyModel constructor

CryptoCurrencyModel({
  1. String? ticker,
  2. String? name,
  3. String? image,
  4. bool? hasExternalId,
  5. bool? isExtraIdSupported,
  6. bool? isFiat,
  7. bool? featured,
  8. bool? isStable,
  9. bool? supportsFixedRate,
  10. String? network,
  11. String? tokenContract,
  12. bool? buy,
  13. bool? sell,
  14. String? legacyTicker,
})

Implementation

CryptoCurrencyModel(
    {this.ticker,
    this.name,
    this.image,
    this.hasExternalId,
    this.isExtraIdSupported,
    this.isFiat,
    this.featured,
    this.isStable,
    this.supportsFixedRate,
    this.network,
    this.tokenContract,
    this.buy,
    this.sell,
    this.legacyTicker});