RadarAnimation constructor

const RadarAnimation({
  1. Key? key,
  2. RadarController? controller,
  3. required double dimension,
  4. required Color backgroundColor,
  5. required Duration duration,
  6. required int numberPoints,
  7. required double pointRadius,
  8. required Color pointColor,
  9. required Color sectorColor,
  10. required bool paintSector,
  11. required Color gridColor,
  12. required double? gridStrokeWidth,
  13. required int gridCircleCount,
  14. required int gridCircleLinesCount,
  15. required double? waveStrokeWidth,
  16. required Color waveColor,
  17. required int waveCount,
  18. required double? radarLineStrokeWidth,
  19. required Color radarLineColor,
  20. required double? centerDotRadius,
  21. required Color centerDotColor,
})

Implementation

const RadarAnimation({
  super.key,
  this.controller,
  required this.dimension,
  required this.backgroundColor,
  required this.duration,
  required this.numberPoints,
  required this.pointRadius,
  required this.pointColor,
  required this.sectorColor,
  required this.paintSector,
  required this.gridColor,
  required this.gridStrokeWidth,
  required this.gridCircleCount,
  required this.gridCircleLinesCount,
  required this.waveStrokeWidth,
  required this.waveColor,
  required this.waveCount,
  required this.radarLineStrokeWidth,
  required this.radarLineColor,
  required this.centerDotRadius,
  required this.centerDotColor,
});