AssetPriceHistory constructor

AssetPriceHistory({
  1. DateTime? dateCreated,
  2. DateTime? lastUpdated,
  3. String? aphId,
  4. String? assetId,
  5. String? endpointId,
  6. double? priceUsd,
  7. DateTime? dateEnded,
})

Returns a new AssetPriceHistory instance.

Implementation

AssetPriceHistory({
  this.dateCreated,
  this.lastUpdated,
  this.aphId,
  this.assetId,
  this.endpointId,
  this.priceUsd,
  this.dateEnded,
});