currentValue property

num currentValue

The current value.

If roundToInt is true, this value will always be an int.

Implementation

num get currentValue => roundToInt ? _currentValue.round() : _currentValue;