RadarPainter constructor

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

Implementation

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