convertIndexToValue property
Determines the logic of how an item with an index of "i" is appearing on the wheel.
In other words, this function is responsible for converting an index to a value. Example:
convertIndexToValue(0) // could return '0.25', or 'Foo', etc.
Implementation
final SelectorWheelValue<T> Function(int index) convertIndexToValue;