RadarChartStyle constructor

const RadarChartStyle({
  1. required Color strokeColor,
  2. required Color areaColor,
  3. double strokeWidth = 3,
  4. bool dotted = false,
  5. Color? dotColor,
  6. double dotRadius = 3,
})

Implementation

const RadarChartStyle({
  required this.strokeColor,
  required this.areaColor,
  this.strokeWidth = 3,
  this.dotted = false,
  this.dotColor,
  this.dotRadius = 3,
});