RadarDimension constructor

const RadarDimension({
  1. required String name,
  2. required double max,
  3. TextStyle titleStyle = const TextStyle(fontSize: 12, color: Colors.black87),
  4. TextStyle scoreStyle = const TextStyle(fontSize: 12, color: Colors.black),
  5. Color? labelBgColor,
})

Implementation

const RadarDimension({
  required this.name,
  required this.max,
  this.titleStyle = const TextStyle(fontSize: 12, color: Colors.black87),
  this.scoreStyle = const TextStyle(fontSize: 12, color: Colors.black),
  this.labelBgColor,
});