ChartLine constructor

const ChartLine({
  1. Key? key,
  2. required Size size,
  3. required List<ChartBeanSystem> chartBeanSystems,
  4. Color? backgroundColor,
  5. BaseBean? baseBean,
  6. double bothEndPitchX = 0,
  7. List<DialStyleX>? xDialValues,
  8. LineTouchSet? touchSet,
  9. VoidCallback? paintEnd,
})

Implementation

const ChartLine({
  Key? key,
  required this.size,
  required this.chartBeanSystems,
  this.backgroundColor,
  this.baseBean,
  this.bothEndPitchX = 0,
  this.xDialValues,
  this.touchSet,
  this.paintEnd,
}) : super(key: key);