SimplePriceResponse constructor Null safety

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

Implementation

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