LocationIndicator constructor

const LocationIndicator({
  1. Key? key,
  2. double radius = 10,
  3. double overlayRadius = 100,
  4. double ringRadius = 3,
  5. Color color = Colors.lightBlue,
  6. bool animate = true,
})

Implementation

const LocationIndicator({
  Key? key,
  this.radius = 10,
  this.overlayRadius = 100,
  this.ringRadius = 3,
  this.color = Colors.lightBlue,
  this.animate = true,
}) : super(key: key);