CoinsPriceResponse constructor Null safety

CoinsPriceResponse(
  1. {List<List<double>>? prices,
  2. List<List<double>>? marketCaps,
  3. List<List<double>>? totalVolumes}
)

Implementation

CoinsPriceResponse({
  this.prices,
  this.marketCaps,
  this.totalVolumes,
});