ScatterChart constructor

const ScatterChart({
  1. Key? key,
  2. required ChartConfig config,
  3. double pointRadius = 5,
  4. ChartTheme? theme,
})

Implementation

const ScatterChart({
  super.key,
  required this.config,
  this.pointRadius = 5,
  this.theme,
});