Annotation constructor

Annotation({
  1. bool fixed = false,
  2. int yAxisPosition = 0,
  3. dynamic userInfo,
  4. ValueChanged<Annotation>? onTap,
  5. double? minZoomVisible,
  6. double? maxZoomVisible,
})

Implementation

Annotation({
  this.fixed = false,
  this.yAxisPosition = 0,
  this.userInfo,
  this.onTap,
  this.minZoomVisible,
  this.maxZoomVisible,
});