BasePointer constructor
BasePointer({
- Key? key,
- required double value,
- PointerPosition pointerPosition = PointerPosition.center,
- PointerAlignment pointerAlignment = PointerAlignment.center,
- int animationDuration = 1000,
- Curve animationType = Curves.ease,
- 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,
});