ForecastResult constructor

ForecastResult({
  1. String? meanValue,
  2. String? predictionIntervalLowerBound,
  3. String? predictionIntervalUpperBound,
  4. DateInterval? timePeriod,
})

Implementation

ForecastResult({
  this.meanValue,
  this.predictionIntervalLowerBound,
  this.predictionIntervalUpperBound,
  this.timePeriod,
});