LineChartBean constructor

LineChartBean({
  1. Color lineColor = _defaultColor,
  2. List<double>? value,
  3. double maxValue = 0,
  4. LineChartMode mode = LineChartMode.curve,
})

Implementation

LineChartBean({
  this.lineColor = _defaultColor,
  this.value,
  this.maxValue = 0,
  this.mode = LineChartMode.curve,
});