RadarPainter constructor

const RadarPainter({
  1. required double maxDistance,
  2. required List<ArAnnotation> arAnnotations,
  3. required double heading,
  4. required Color markerColor,
  5. required Color background,
})

Implementation

const RadarPainter({
  required this.maxDistance,
  required this.arAnnotations,
  required this.heading,
  required this.markerColor,
  required this.background,
});