SimpleMapPoint constructor

SimpleMapPoint({
  1. double lat = 0.0,
  2. double lng = 0.0,
  3. double radius = 1.0,
  4. double opacity = 1.0,
  5. Color? color,
  6. Duration? ttl = Duration.zero,
  7. SimpleMapPointState state = SimpleMapPointState.idle,
  8. int fractionDigits = 1,
  9. SimpleMapPointAnimator? animator,
})

Implementation

SimpleMapPoint({
  this.lat = 0.0,
  this.lng = 0.0,
  this.radius = 1.0,
  this.opacity = 1.0,
  this.color,
  this.ttl = Duration.zero,
  this.state = SimpleMapPointState.idle,
  this.fractionDigits = 1,
  this.animator,
});