RadarBean constructor

RadarBean(
  1. num score,
  2. String name, {
  3. Color bgColor = Colors.white,
  4. TextStyle textStyle = const TextStyle(color: Colors.black, fontSize: 12),
  5. TextStyle scoreTextStyle = const TextStyle(color: Colors.white, fontSize: 12),
  6. num emptyScoreGrid = 10,
})

Implementation

RadarBean(
  this.score,
  this.name, {
  this.bgColor = Colors.white,
  this.textStyle = const TextStyle(color: Colors.black, fontSize: 12),
  this.scoreTextStyle = const TextStyle(color: Colors.white, fontSize: 12),
  this.emptyScoreGrid = 10,
});