SimplePriceResponse constructor

SimplePriceResponse({
  1. String? currency,
  2. double? btcPrice,
  3. double? localCurrencyPrice,
})

Implementation

SimplePriceResponse({
  this.currency,
  this.btcPrice,
  this.localCurrencyPrice,
});