GaugePointer constructor
GaugePointer({
- double value = 0,
- bool enableDragging = false,
- ValueChanged<
double> ? onValueChanged, - ValueChanged<
double> ? onValueChangeStart, - ValueChanged<
ValueChangingArgs> ? onValueChanging, - ValueChanged<
double> ? onValueChangeEnd, - bool enableAnimation = false,
- AnimationType animationType = AnimationType.ease,
- double animationDuration = 1000,
Create a pointer with the default or required properties.
Implementation
GaugePointer({
this.value = 0,
this.enableDragging = false,
this.onValueChanged,
this.onValueChangeStart,
this.onValueChanging,
this.onValueChangeEnd,
this.enableAnimation = false,
this.animationType = AnimationType.ease,
this.animationDuration = 1000,
});