PlotGeneral constructor

PlotGeneral({
  1. required Array ay,
  2. Color? stroke,
  3. Color? fill,
  4. StrokeWidth? strokeWidth,
  5. StrokeDasharray? strokeDasharray,
  6. String? id = 'plot_line',
  7. PlotGeneralType plotGeneralType = PlotGeneralType.Line,
})

Implementation

PlotGeneral(
    {required this.ay,
    this.stroke,
    this.fill,
    this.strokeWidth,
    this.strokeDasharray,
    this.id = 'plot_line',
    this.plotGeneralType = PlotGeneralType.Line});