LimitLineBean constructor

LimitLineBean({
  1. Color lineColor = _defaultColor,
  2. double value = 0,
  3. double maxValue = 0,
  4. AxisLineMode mode = AxisLineMode.dotted,
})

Implementation

LimitLineBean({
  this.lineColor = _defaultColor,
  this.value = 0,
  this.maxValue = 0,
  this.mode = AxisLineMode.dotted,
});