constant property
double
get
constant
The constant used in the symlog transform.
Implementation
double get constant => _constant;
set
constant
(double value)
Implementation
set constant(double value) {
assert(value > 0, 'Constant must be positive');
_constant = value;
}