LineChart constructor

const LineChart({
  1. Key? key,
  2. required ChartConfig config,
  3. LineChartMode mode = LineChartMode.smooth,
  4. ChartTheme? theme,
  5. bool fillArea = false,
})

Implementation

const LineChart({
  super.key,
  required this.config,
  this.mode = LineChartMode.smooth,
  this.theme,
  this.fillArea = false,
});