AreaChart constructor

const AreaChart({
  1. Key? key,
  2. required ChartConfig config,
  3. LineChartMode mode = LineChartMode.smooth,
  4. ChartTheme? theme,
})

Implementation

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