CartesianChartPoint<D> constructor

CartesianChartPoint<D>([
  1. D? x,
  2. D? y,
  3. String? dataLabelMapper,
  4. Color? pointColorMapper,
  5. num? bubbleSize,
  6. D? high,
  7. D? low,
  8. D? open,
  9. D? close,
  10. num? volume,
  11. D? sortValue,
  12. num? minimum,
  13. num? maximum,
  14. bool? isIntermediateSum,
  15. bool? isTotalSum,
  16. num maxYValue = 0,
  17. List<num>? outliers,
  18. double? upperQuartile,
  19. double? lowerQuartile,
  20. num? mean,
  21. num? median,
  22. num? originValue,
  23. num? endValue,
])

Creating an argument constructor of CartesianChartPoint class.

Implementation

CartesianChartPoint(
    [this.x,
    this.y,
    this.dataLabelMapper,
    this.pointColorMapper,
    this.bubbleSize,
    this.high,
    this.low,
    this.open,
    this.close,
    this.volume,
    this.sortValue,
    this.minimum,
    this.maximum,
    this.isIntermediateSum,
    this.isTotalSum,
    this.maxYValue = 0,
    this.outliers,
    this.upperQuartile,
    this.lowerQuartile,
    this.mean,
    this.median,
    this.originValue,
    this.endValue]) {
  x = x;
  y = y;
  sortValue = sortValue;
  markerPoint = markerPoint;
  isEmpty = isEmpty;
  isGap = isGap;
  isVisible = isVisible;
  bubbleSize = bubbleSize;
  pointColorMapper = pointColorMapper;
  dataLabelMapper = dataLabelMapper;
  high = high;
  low = low;
  open = open;
  close = close;
  markerPoint2 = markerPoint2;
  volume = volume;
  minimum = minimum;
  maximum = maximum;
  outliers = outliers;
  upperQuartile = upperQuartile;
  lowerQuartile = lowerQuartile;
  mean = mean;
  median = median;
  isIntermediateSum = isIntermediateSum;
  isTotalSum = isTotalSum;
  originValue = originValue;
  endValue = endValue;
  maxYValue = maxYValue;
}