BasePointer constructor

BasePointer({
  1. Key? key,
  2. required double value,
  3. PointerPosition pointerPosition = PointerPosition.center,
  4. PointerAlignment pointerAlignment = PointerAlignment.center,
  5. int animationDuration = 1000,
  6. Curve animationType = Curves.ease,
  7. bool enableAnimation = true,
})

Implementation

BasePointer({
  Key? key,
  required this.value,
  this.pointerPosition = PointerPosition.center,
  this.pointerAlignment = PointerAlignment.center,
  this.animationDuration = 1000,
  this.animationType = Curves.ease,
  this.enableAnimation = true,
});