LineChartSeries constructor

const LineChartSeries({
  1. required List<double> data,
  2. String strokeColor = '#6366f1',
  3. String fillColor = 'rgba(99, 102, 241, 0.08)',
  4. double strokeWidth = 2.5,
  5. String label = '',
})

Implementation

const LineChartSeries({
  required this.data,
  this.strokeColor = '#6366f1',
  this.fillColor = 'rgba(99, 102, 241, 0.08)',
  this.strokeWidth = 2.5,
  this.label = '',
});