onChangeEnd property
Signature for a callback that reports the value changes are ended for a marker pointer.
This snippet shows how to call onChangeEnd callback in SfLinearGauge.
SfLinearGauge(
markerPointers: [
LinearShapePointer(
value: _pointerValue,
onChangeEnd: (double endValue) {
print('End value $endValue');
},
)])
Implementation
@override
final ValueChanged<double>? onChangeEnd;