TrendlineRenderParams constructor

TrendlineRenderParams([
  1. double? intercept,
  2. int? seriesIndex,
  3. String? trendlineName,
  4. String? seriesName,
  5. List<Offset>? calculatedDataPoints,
  6. List<double>? slope,
  7. double? rSquaredValue,
])

Creating an argument constructor of TrendlineRenderParams class.

Implementation

TrendlineRenderParams([
  this.intercept,
  this.seriesIndex,
  this.trendlineName,
  this.seriesName,
  this.calculatedDataPoints,
  this.slope,
  this.rSquaredValue,
]);