ClimateProduct constructor

const ClimateProduct({
  1. required DateTime created,
  2. required Map<String, ClimateRemovalsProductsPrice> currentPricesPerMetricTon,
  3. int? deliveryYear,
  4. required String id,
  5. required bool livemode,
  6. required String metricTonsAvailable,
  7. required String name,
  8. required List<ClimateSupplier> suppliers,
})

ClimateRemovalsProducts

A Climate product represents a type of carbon removal unit available for reservation. You can retrieve it to see the current price and availability.

Implementation

const ClimateProduct({
  required this.created,
  required this.currentPricesPerMetricTon,
  this.deliveryYear,
  required this.id,
  required this.livemode,
  required this.metricTonsAvailable,
  required this.name,
  required this.suppliers,
});