RadarWidget constructor

RadarWidget({
  1. Key? key,
  2. required RadarMapModel radarMap,
  3. TextStyle? textStyle = const TextStyle(color: Colors.black),
  4. bool? isNeedDrawLegend = true,
  5. LineText? lineText,
  6. DialogText? dilogText,
  7. OutLineText? outLineText,
  8. double? skewing,
})

Implementation

RadarWidget({Key? key, required this.radarMap, this.textStyle = const TextStyle(color: Colors.black), this.isNeedDrawLegend = true,this.lineText,this.dilogText,this.outLineText,this.skewing}):super(key:key){
  assert(radarMap.legend.length == radarMap.data.length);
}