getValueByPositionIgnoreOffset method

double getValueByPositionIgnoreOffset(
  1. double position
)

Implementation

double getValueByPositionIgnoreOffset(double position) {
  double value = ((position / (__containerSizeWithoutPadding! / _divisions)) * _widgetStep!);
  return value;
}