lowValueMapper property

ChartValueMapper<T, num>? lowValueMapper

Implementation

ChartValueMapper<T, num>? get lowValueMapper => _lowValueMapper;
void lowValueMapper=(ChartValueMapper<T, num>? value)

Implementation

set lowValueMapper(ChartValueMapper<T, num>? value) {
  if (_lowValueMapper != value) {
    _lowValueMapper = value;
  }
}