ModelPricing constructor

const ModelPricing({
  1. required double inputPerMillion,
  2. required double outputPerMillion,
  3. double? cacheCreationPerMillion,
  4. double? cacheReadPerMillion,
})

Implementation

const ModelPricing({
  required this.inputPerMillion,
  required this.outputPerMillion,
  this.cacheCreationPerMillion,
  this.cacheReadPerMillion,
});