leftProgressPercent property

double get leftProgressPercent

The current progress of the leftValue input in percent.

Implementation

double get leftProgressPercent =>
    isTwoSided ? (100.0 * (leftValue - min) / (max - min)) : 0;