LineChart constructor

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

Implementation

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